Skip to content

Commit

Permalink
fix unchecked warning issue
Browse files Browse the repository at this point in the history
  • Loading branch information
peterbae committed Jun 28, 2018
1 parent 8972f66 commit 21945e5
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ public void testDoubleQuotes() throws Exception {
}
}

@SuppressWarnings("unchecked")
@Test
public void testAll() throws Exception {
try (Connection connection = DriverManager.getConnection(connectionString + ";useBulkCopyForBatchInsert=true;");
Expand Down Expand Up @@ -342,10 +343,6 @@ public void testAllFilledColumns() throws Exception {
f1.setAccessible(true);
f1.set(connection, true);

Timestamp myTimestamp = new Timestamp(114550L);

Date d = new Date(114550L);

pstmt.addBatch();

pstmt.executeBatch();
Expand Down

0 comments on commit 21945e5

Please sign in to comment.