Skip to content
Snippets Groups Projects
Commit e026d20d authored by Jonas Blatt's avatar Jonas Blatt :ant:
Browse files

small bug fix

parent 6c8ed67e
No related branches found
No related tags found
No related merge requests found
...@@ -208,7 +208,7 @@ public abstract class AbstractGrowingBoundary<T extends Comparable<? super T>> ...@@ -208,7 +208,7 @@ public abstract class AbstractGrowingBoundary<T extends Comparable<? super T>>
} }
sb.append(" "); sb.append(" ");
sb.append(getUpperBound()); sb.append(getUpperBound());
} else if (lowerBound.equals(getMaxValue())) { } else if (upperBound.equals(getMaxValue())) {
sb.append(">"); sb.append(">");
if (getLowerBoundType() == INCLUSIVE) { if (getLowerBoundType() == INCLUSIVE) {
sb.append("="); sb.append("=");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment