--- old/src/java.sql.rowset/share/classes/javax/sql/rowset/BaseRowSet.java 2019-09-24 21:28:18.921092072 -0700 +++ new/src/java.sql.rowset/share/classes/javax/sql/rowset/BaseRowSet.java 2019-09-24 21:28:18.713092072 -0700 @@ -330,6 +330,7 @@ * specified in the ResultSet interface. * @serial */ + @SuppressWarnings("serial") // Not statically typed as Serializable protected java.io.InputStream binaryStream; /** @@ -338,6 +339,7 @@ * which is specified in the ResultSet interface. * @serial */ + @SuppressWarnings("serial") // Not statically typed as Serializable protected java.io.InputStream unicodeStream; /** @@ -346,6 +348,7 @@ * which is specified in the ResultSet interface. * @serial */ + @SuppressWarnings("serial") // Not statically typed as Serializable protected java.io.InputStream asciiStream; /** @@ -354,6 +357,7 @@ * which is specified in the ResultSet interface. * @serial */ + @SuppressWarnings("serial") // Not statically typed as Serializable protected java.io.Reader charStream; /** @@ -506,6 +510,7 @@ * custom mapping of user-defined types. * @serial */ + @SuppressWarnings("serial") // Not statically typed as Serializable private Map> map; /** --- old/src/java.sql.rowset/share/classes/javax/sql/rowset/serial/SerialArray.java 2019-09-24 21:28:19.501092072 -0700 +++ new/src/java.sql.rowset/share/classes/javax/sql/rowset/serial/SerialArray.java 2019-09-24 21:28:19.297092072 -0700 @@ -66,6 +66,7 @@ * in the SQL ARRAY value. * @serial */ + @SuppressWarnings("serial") // Not statically typed as Serializable private Object[] elements; /** --- old/src/java.sql.rowset/share/classes/javax/sql/rowset/serial/SerialBlob.java 2019-09-24 21:28:20.009092072 -0700 +++ new/src/java.sql.rowset/share/classes/javax/sql/rowset/serial/SerialBlob.java 2019-09-24 21:28:19.821092072 -0700 @@ -73,6 +73,7 @@ * The internal representation of the Blob object on which this * SerialBlob object is based. */ + @SuppressWarnings("serial") // Not statically typed as Serializable; checked in writeObject private Blob blob; /** --- old/src/java.sql.rowset/share/classes/javax/sql/rowset/serial/SerialClob.java 2019-09-24 21:28:20.541092072 -0700 +++ new/src/java.sql.rowset/share/classes/javax/sql/rowset/serial/SerialClob.java 2019-09-24 21:28:20.341092072 -0700 @@ -68,6 +68,7 @@ * Internal Clob representation if SerialClob is initialized with a * Clob. Null if SerialClob is initialized with a char[]. */ + @SuppressWarnings("serial") // Not statically typed as Serializable; checked in writeObject private Clob clob; /** --- old/src/java.sql.rowset/share/classes/javax/sql/rowset/serial/SerialJavaObject.java 2019-09-24 21:28:21.057092072 -0700 +++ new/src/java.sql.rowset/share/classes/javax/sql/rowset/serial/SerialJavaObject.java 2019-09-24 21:28:20.861092072 -0700 @@ -61,6 +61,7 @@ /** * Placeholder for object to be serialized. */ + @SuppressWarnings("serial") // Not statically typed as Serializable private Object obj; --- old/src/java.sql.rowset/share/classes/javax/sql/rowset/serial/SerialRef.java 2019-09-24 21:28:21.565092072 -0700 +++ new/src/java.sql.rowset/share/classes/javax/sql/rowset/serial/SerialRef.java 2019-09-24 21:28:21.373092072 -0700 @@ -56,11 +56,13 @@ /** * This will store the type Ref as an Object. */ + @SuppressWarnings("serial") // Not statically typed as Serializable private Object object; /** * Private copy of the Ref reference. */ + @SuppressWarnings("serial") // Not statically typed as Serializable; checked in writeObject private Ref reference; /** --- old/src/java.sql.rowset/share/classes/javax/sql/rowset/serial/SerialStruct.java 2019-09-24 21:28:22.101092072 -0700 +++ new/src/java.sql.rowset/share/classes/javax/sql/rowset/serial/SerialStruct.java 2019-09-24 21:28:21.913092072 -0700 @@ -80,6 +80,7 @@ * * @serial */ + @SuppressWarnings("serial") // Not statically typed as Serializable private Object attribs[]; /** --- old/src/java.sql.rowset/share/classes/javax/sql/rowset/spi/SyncProviderException.java 2019-09-24 21:28:22.629092072 -0700 +++ new/src/java.sql.rowset/share/classes/javax/sql/rowset/spi/SyncProviderException.java 2019-09-24 21:28:22.417092072 -0700 @@ -70,6 +70,7 @@ * this SyncProviderException object will return when its * getSyncResolver method is called. */ + @SuppressWarnings("serial") // Not statically typed as Serializable private SyncResolver syncResolver = null; /** --- old/src/java.sql/share/classes/java/sql/SQLClientInfoException.java 2019-09-24 21:28:23.225092072 -0700 +++ new/src/java.sql/share/classes/java/sql/SQLClientInfoException.java 2019-09-24 21:28:22.961092072 -0700 @@ -49,7 +49,7 @@ - + @SuppressWarnings("serial") // Not statically typed as Serializable private Map failedProperties; /** --- old/src/java.sql/share/classes/javax/sql/StatementEvent.java 2019-09-24 21:28:23.773092072 -0700 +++ new/src/java.sql/share/classes/javax/sql/StatementEvent.java 2019-09-24 21:28:23.577092072 -0700 @@ -44,6 +44,7 @@ static final long serialVersionUID = -8089573731826608315L; private SQLException exception; + @SuppressWarnings("serial") // Not statically typed as Serializable private PreparedStatement statement; /**