@@ -26,7 +26,6 @@ private class ResultSetTest
2626 extends AbstractResultSet {
2727 public boolean closed = false ;
2828
29-
3029 @ Override
3130 public boolean next () throws SQLException {
3231 return false ;
@@ -222,7 +221,6 @@ public void testUpdateShort2() throws SQLException {
222221 resultSet .updateShort (1 , (short ) 1 );
223222 }
224223
225-
226224 @ Test (expected = SQLException .class )
227225 public void testUpdateInt () throws SQLException {
228226 resultSet .closed = false ;
@@ -234,7 +232,6 @@ public void testUpdateInt2() throws SQLException {
234232 resultSet .updateInt (1 , 1 );
235233 }
236234
237-
238235 @ Test (expected = SQLException .class )
239236 public void testUpdateLong () throws SQLException {
240237 resultSet .closed = false ;
@@ -246,7 +243,6 @@ public void testUpdateLong2() throws SQLException {
246243 resultSet .updateLong (1 , 1L );
247244 }
248245
249-
250246 @ Test (expected = SQLException .class )
251247 public void testUpdateFloat () throws SQLException {
252248 resultSet .closed = false ;
@@ -269,7 +265,6 @@ public void testUpdateDouble2() throws SQLException {
269265 resultSet .updateDouble (1 , 1.0 );
270266 }
271267
272-
273268 @ Test (expected = SQLException .class )
274269 public void testUpdateBigDecimal () throws SQLException {
275270 resultSet .closed = false ;
@@ -281,7 +276,6 @@ public void testUpdateBigDecimal2() throws SQLException {
281276 resultSet .updateBigDecimal (1 , BigDecimal .ONE );
282277 }
283278
284-
285279 @ Test (expected = SQLException .class )
286280 public void testUpdateString () throws SQLException {
287281 resultSet .closed = false ;
@@ -304,7 +298,6 @@ public void testUpdateBytes2() throws SQLException {
304298 resultSet .updateBytes (1 , new byte []{1 , 2 , 3 });
305299 }
306300
307-
308301 @ Test (expected = SQLException .class )
309302 public void testUpdateDate () throws SQLException {
310303 resultSet .closed = false ;
@@ -316,7 +309,6 @@ public void testUpdateDate2() throws SQLException {
316309 resultSet .updateDate (1 , new Date (System .currentTimeMillis ()));
317310 }
318311
319-
320312 @ Test (expected = SQLException .class )
321313 public void testUpdateTime () throws SQLException {
322314 resultSet .closed = false ;
@@ -339,7 +331,6 @@ public void testUpdateTimestamp2() throws SQLException {
339331 resultSet .updateTimestamp (1 , new Timestamp (System .currentTimeMillis ()));
340332 }
341333
342-
343334 @ Test (expected = SQLException .class )
344335 public void testUpdateAsciiStream () throws SQLException {
345336 resultSet .closed = false ;
@@ -351,8 +342,6 @@ public void testUpdateAsciiStream2() throws SQLException {
351342 resultSet .updateAsciiStream (1 , (InputStream ) null , 10 );
352343 }
353344
354-
355-
356345 @ Test (expected = SQLException .class )
357346 public void testUpdateBinaryStream () throws SQLException {
358347 resultSet .closed = false ;
@@ -364,7 +353,6 @@ public void testUpdateBinaryStream2() throws SQLException {
364353 resultSet .updateBinaryStream (1 , (InputStream ) null , 10 );
365354 }
366355
367-
368356 @ Test (expected = SQLException .class )
369357 public void testUpdateCharacterStream () throws SQLException {
370358 resultSet .closed = false ;
@@ -636,7 +624,6 @@ public void testUpdateNStringByLabel2() throws SQLException {
636624 resultSet .updateNString ("column" , null );
637625 }
638626
639-
640627 @ Test (expected = SQLException .class )
641628 public void testUpdateNClobByIndex () throws SQLException {
642629 resultSet .closed = false ;
@@ -715,7 +702,6 @@ public void testUpdateSQLXMLByIndex2() throws SQLException {
715702 resultSet .updateSQLXML (1 , null );
716703 }
717704
718-
719705 @ Test (expected = SQLException .class )
720706 public void testUpdateSQLXMLByLabel () throws SQLException {
721707 resultSet .closed = false ;
@@ -727,7 +713,6 @@ public void testUpdateSQLXMLByLabel2() throws SQLException {
727713 resultSet .updateSQLXML ("column" , null );
728714 }
729715
730-
731716 @ Test (expected = SQLException .class )
732717 public void testGetNCharacterStreamByIndex () throws SQLException {
733718 resultSet .closed = false ;
@@ -739,7 +724,6 @@ public void testGetNCharacterStreamByIndex2() throws SQLException {
739724 resultSet .getNCharacterStream (1 );
740725 }
741726
742-
743727 @ Test (expected = SQLException .class )
744728 public void testGetNCharacterStreamByLabel () throws SQLException {
745729 resultSet .closed = false ;
@@ -894,7 +878,6 @@ public void testUpdateNClobByIndexWithLength2() throws SQLException {
894878 resultSet .updateNClob (1 , null , 10L );
895879 }
896880
897-
898881 @ Test (expected = SQLException .class )
899882 public void testUpdateNClobByLabelWithLength () throws SQLException {
900883 resultSet .closed = false ;
0 commit comments