* change sortName() default behaviour to something more sensible

This commit is contained in:
Reinhard Pointner 2015-11-04 09:35:40 +00:00
parent 4d67212e9b
commit d6db7189db
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ public class ExpressionFormatMethods {
}
public static String sortName(String self) {
return sortName(self, "$2, $1");
return sortName(self, "$2");
}
public static String sortName(String self, String replacement) {