8282657: Code cleanup: removing double semicolons at the end of lines

Reviewed-by: lancea, rriggs, ihse, prr, iris, wetmore, darcy, dholmes
This commit is contained in:
Matteo Baccan 2022-03-07 21:33:40 +00:00 committed by Magnus Ihse Bursie
parent 5d5bf16b0a
commit ccad39237a
82 changed files with 93 additions and 93 deletions

View file

@ -276,7 +276,7 @@ public class CachedRowSetWriter implements TransactionalWriter, Serializable {
// We assume caller is a CachedRowSet
CachedRowSetImpl crs = (CachedRowSetImpl)caller;
// crsResolve = new CachedRowSetImpl();
this.crsResolve = new CachedRowSetImpl();;
this.crsResolve = new CachedRowSetImpl();
// The reader is registered with the writer at design time.
// This is not required, in general. The reader has logic

View file

@ -535,7 +535,7 @@ public class SQLOutputImpl implements SQLOutput {
*/
@SuppressWarnings("unchecked")
public void writeStruct(Struct x) throws SQLException {
SerialStruct s = new SerialStruct(x,map);;
SerialStruct s = new SerialStruct(x,map);
attribs.add(s);
}