src/share/classes/javax/sql/rowset/serial/SerialJavaObject.java

Print this page

        

*** 140,156 **** /** * A container for the warnings issued on this <code>SerialJavaObject</code> * object. When there are multiple warnings, each warning is chained to the * previous warning. */ ! java.util.Vector chain; /** * Registers the given warning. */ private void setWarning(RowSetWarning e) { if (chain == null) { ! chain = new java.util.Vector(); } chain.add(e); } } --- 140,156 ---- /** * A container for the warnings issued on this <code>SerialJavaObject</code> * object. When there are multiple warnings, each warning is chained to the * previous warning. */ ! java.util.Vector<RowSetWarning> chain; /** * Registers the given warning. */ private void setWarning(RowSetWarning e) { if (chain == null) { ! chain = new java.util.Vector<RowSetWarning>(); } chain.add(e); } }