src/share/classes/sun/security/provider/certpath/ReverseState.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2000, 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) 2000, 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
*** 369,380 **** public Object clone() { try { ReverseState clonedState = (ReverseState) super.clone(); /* clone checkers, if cloneable */ ! clonedState.userCheckers = ! (ArrayList<PKIXCertPathChecker>)userCheckers.clone(); ListIterator<PKIXCertPathChecker> li = clonedState.userCheckers.listIterator(); while (li.hasNext()) { PKIXCertPathChecker checker = li.next(); if (checker instanceof Cloneable) { --- 369,379 ---- public Object clone() { try { ReverseState clonedState = (ReverseState) super.clone(); /* clone checkers, if cloneable */ ! clonedState.userCheckers = userCheckers.clone(); ListIterator<PKIXCertPathChecker> li = clonedState.userCheckers.listIterator(); while (li.hasNext()) { PKIXCertPathChecker checker = li.next(); if (checker instanceof Cloneable) {