src/share/classes/com/sun/jndi/ldap/LdapName.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1999, 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. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 1999, 2012, 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. Oracle designates this
*** 96,109 **** /* * Constructs an LDAP name given its parsed components and, optionally * (if "name" is not null), the unparsed DN. */ - @SuppressWarnings("unchecked") // clone() private LdapName(String name, Vector<Rdn> rdns) { unparsed = name; ! this.rdns = (Vector<Rdn>)rdns.clone(); } /* * Constructs an LDAP name given its parsed components (the elements * of "rdns" in the range [beg,end)) and, optionally --- 96,108 ---- /* * Constructs an LDAP name given its parsed components and, optionally * (if "name" is not null), the unparsed DN. */ private LdapName(String name, Vector<Rdn> rdns) { unparsed = name; ! this.rdns = rdns.clone(); } /* * Constructs an LDAP name given its parsed components (the elements * of "rdns" in the range [beg,end)) and, optionally