mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Fabio Pistolesi
12.40.2016 adc54476d751017e605fd0581f8918b2a20abd19
Fix Checkstyle
1 files modified
3 ■■■■ changed files
opendj-core/src/main/java/org/forgerock/opendj/ldap/SortKey.java 3 ●●●● patch | view | raw | blame | history
opendj-core/src/main/java/org/forgerock/opendj/ldap/SortKey.java
@@ -534,8 +534,7 @@
            && equalsIgnoreCase(orderingMatchingRule, s.orderingMatchingRule);
    }
    private boolean equalsIgnoreCase(String s1, String s2)
    {
    private boolean equalsIgnoreCase(String s1, String s2) {
        return s1 == null ? s2 == null : s1.equalsIgnoreCase(s2);
    }