Minor
This commit is contained in:
@@ -33,9 +33,9 @@ public final class IntRange implements Range<Integer>, IntIterable {
|
||||
@Override
|
||||
public String toString() {
|
||||
if (count >= 0) {
|
||||
return "" + getStart() + ".upto(" + getEnd() + ")";
|
||||
return getStart() + ".upto(" + getEnd() + ")";
|
||||
} else {
|
||||
return "" + getStart() + ".downto(" + getEnd() + ")";
|
||||
return getStart() + ".downto(" + getEnd() + ")";
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user