Skip to content

Commit

Permalink
Some JavaDoc cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
egonw committed Aug 21, 2022
1 parent 1f4e00d commit dac13e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 0 additions & 3 deletions src/main/java/org/xmlcml/cml/base/IntSTAttribute.java
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ public IntSTAttribute(Attribute att, String value) {
*
* @param s
* the value
* @throws RuntimeException
*/
public void setCMLValue(String s) {
if (s!= null && !s.trim().equals(S_EMPTY)) {
Expand Down Expand Up @@ -123,8 +122,6 @@ public void setCMLValue(int i) {
*
* @param i
* the value
* @throws RuntimeException
* wrong type or value fails
*/
public void checkValue(int i) {
if (cmlType != null) {
Expand Down
3 changes: 2 additions & 1 deletion src/main/java/org/xmlcml/cml/interfacex/HasDictRef.java
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ public interface HasDictRef {


/** set dictRef value.
*
*
* @param dictRef
*/
void setDictRef(String dictRef);

Expand Down

0 comments on commit dac13e2

Please sign in to comment.