opendj-server-legacy/src/test/java/org/opends/server/protocols/ldap/LdapTestCase.java
@@ -58,11 +58,8 @@ */ static boolean testEqual(LDAPAttribute a1, LDAPAttribute a2) { if (a1.getAttributeType().equals(a2.getAttributeType())) { return a1.getValues().equals(a2.getValues()); } return false; return a1.getAttributeType().equals(a2.getAttributeType()) && a1.getValues().equals(a2.getValues()); } /**