Skip to content
Snippets Groups Projects
Commit 2b05ad24 authored by buczekp's avatar buczekp
Browse files

minor: improve compareTo

SVN: 18385
parent 1ecfc820
No related branches found
No related tags found
No related merge requests found
...@@ -100,7 +100,7 @@ public class ParameterValue implements Comparable<ParameterValue>, IsSerializabl ...@@ -100,7 +100,7 @@ public class ParameterValue implements Comparable<ParameterValue>, IsSerializabl
public int compareTo(ParameterValue o) public int compareTo(ParameterValue o)
{ {
return this.value.compareTo(o.value); return toString().compareTo(o.toString());
} }
} }
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