src/share/classes/javax/swing/tree/DefaultTreeModel.java

Print this page

        

*** 691,701 **** private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException { s.defaultReadObject(); ! Vector values = (Vector)s.readObject(); int indexCounter = 0; int maxCounter = values.size(); if(indexCounter < maxCounter && values.elementAt(indexCounter). equals("root")) { --- 691,701 ---- private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException { s.defaultReadObject(); ! Vector<?> values = (Vector)s.readObject(); int indexCounter = 0; int maxCounter = values.size(); if(indexCounter < maxCounter && values.elementAt(indexCounter). equals("root")) {