Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
SRU connectivity is case sensitive.
  • Loading branch information
johnmay committed Apr 23, 2017
1 parent 85d4203 commit e7c69d9
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -31,6 +31,7 @@
import java.util.Comparator;
import java.util.Iterator;
import java.util.List;
import java.util.Locale;
import java.util.Map;
import java.util.TreeMap;

Expand Down Expand Up @@ -265,7 +266,7 @@ public int compare(PolymerSgroup a, PolymerSgroup b) {
sb.append(':');
sb.append(sgroup.subscript);
sb.append(':');
sb.append(sgroup.supscript);
sb.append(sgroup.supscript.toLowerCase(Locale.ROOT));
}
}

Expand Down

0 comments on commit e7c69d9

Please sign in to comment.