Skip to content

Commit f1ef9c2

Browse files
author
Jan Vorwerk
committed
Fixed maven build (Javadoc)
1 parent 5c0b491 commit f1ef9c2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/gwt/material/design/client/ui/MaterialRange.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public Integer getValue() {
103103

104104
/**
105105
* Write the current value
106-
* @param value value must be >= min and <= max
106+
* @param value value must be &gt;= min and &lt;= max
107107
*/
108108
public void setValue(Integer value) {
109109
if (value==null)return;
@@ -122,7 +122,7 @@ public Integer getMin() {
122122

123123
/**
124124
* Write the current min value
125-
* @param min value must be < max
125+
* @param min value must be &lt; max
126126
*/
127127
public void setMin(Integer min) {
128128
if (min==null)return;
@@ -140,7 +140,7 @@ public Integer getMax() {
140140

141141
/**
142142
* Write the current max value
143-
* @param max value must be > min
143+
* @param max value must be &gt; min
144144
*/
145145
public void setMax(Integer max) {
146146
if (max==null)return;

0 commit comments

Comments
 (0)