KCR29: builder: Rule: sortByName(): use explicit scoping
This commit is contained in:
parent
5876d723e3
commit
9d2895269d
1 changed files with 1 additions and 1 deletions
|
@ -95,7 +95,7 @@ public class Rule {
|
||||||
* the right string; and a value greater than 0 if the left string is lexicographically greater than the right
|
* the right string; and a value greater than 0 if the left string is lexicographically greater than the right
|
||||||
* string.
|
* string.
|
||||||
*/
|
*/
|
||||||
static int sortByName(final Rule left, final Rule right) {
|
protected static int sortByName(final Rule left, final Rule right) {
|
||||||
return left.getLowerCaseRuleName()
|
return left.getLowerCaseRuleName()
|
||||||
.compareTo(right.getLowerCaseRuleName());
|
.compareTo(right.getLowerCaseRuleName());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue