Skip to content

Commit

Permalink
Fix some javadoc warnings in XmlNumberConverter.
Browse files Browse the repository at this point in the history
  • Loading branch information
wrandelshofer committed Oct 17, 2023
1 parent e3c7ee3 commit 66fbbe7
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,19 @@ public class XmlNumberConverter extends NumberConverter {

private static final long serialVersionUID = 1L;

/**
* Creates a new instance.
*/
public XmlNumberConverter() {
}

/**
* Creates a new instance that only accepts values in the specified range.
*
* @param min the minimal accepted value (inclusive)
* @param max the maximal accepted value (inclusive)
* @param multiplier a multiplication factor applied to the number after parsing it
*/
public XmlNumberConverter(double min, double max, double multiplier) {
super(min, max, multiplier);
}
Expand Down

0 comments on commit 66fbbe7

Please sign in to comment.