< prev index next >

test/jdk/javax/naming/ldap/LdapName/CompareToEqualsTests.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 2003, 2020, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 72,87 **** new LdapName(names2[i]), expectedResults[i]); } byte[] value = "abcxyz".getBytes(); Rdn rdn1 = new Rdn("binary", value); ! ArrayList rdns1 = new ArrayList(); rdns1.add(rdn1); LdapName l1 = new LdapName(rdns1); Rdn rdn2 = new Rdn("binary", value); ! ArrayList rdns2 = new ArrayList(); rdns2.add(rdn2); LdapName l2 = new LdapName(rdns2); checkResults(l1, l2, 0); l2 = new LdapName("binary=#61626378797A"); --- 72,87 ---- new LdapName(names2[i]), expectedResults[i]); } byte[] value = "abcxyz".getBytes(); Rdn rdn1 = new Rdn("binary", value); ! ArrayList<Rdn> rdns1 = new ArrayList<>(); rdns1.add(rdn1); LdapName l1 = new LdapName(rdns1); Rdn rdn2 = new Rdn("binary", value); ! ArrayList<Rdn> rdns2 = new ArrayList<>(); rdns2.add(rdn2); LdapName l2 = new LdapName(rdns2); checkResults(l1, l2, 0); l2 = new LdapName("binary=#61626378797A");
< prev index next >