-
Bug
-
Resolution: Fixed
-
P2
-
5.0
-
rc
-
generic
-
generic
The following two methods in javax.sql.rowset.BaseRowSet result in NPEs if null is passed as the arg. Note: null is a legitimate value to be passed (and will be passed at design time for IDEs using rowsets as beans).
public void setUsername(String name) {
username = new String(name);
}
public void setPassword(String pass) {
password = new String(pass);
}
###@###.### 2004-05-19
public void setUsername(String name) {
username = new String(name);
}
public void setPassword(String pass) {
password = new String(pass);
}
###@###.### 2004-05-19