From 6341c485609e0c33e89e679be8efc525230dcfc8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timo=20Westk=C3=A4mper?= Date: Sun, 28 Mar 2010 21:16:48 +0000 Subject: [PATCH] added @SuppressWarnings("deprecation") --- .../src/main/java/com/mysema/util/ResultSetAdapter.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/querydsl-core/src/main/java/com/mysema/util/ResultSetAdapter.java b/querydsl-core/src/main/java/com/mysema/util/ResultSetAdapter.java index 7ecb78958..81fd2e5c3 100644 --- a/querydsl-core/src/main/java/com/mysema/util/ResultSetAdapter.java +++ b/querydsl-core/src/main/java/com/mysema/util/ResultSetAdapter.java @@ -91,6 +91,7 @@ public class ResultSetAdapter implements ResultSet{ return rs.getAsciiStream(columnLabel); } + @SuppressWarnings("deprecation") public BigDecimal getBigDecimal(int columnIndex, int scale) throws SQLException { return rs.getBigDecimal(columnIndex, scale); } @@ -99,6 +100,7 @@ public class ResultSetAdapter implements ResultSet{ return rs.getBigDecimal(columnIndex); } + @SuppressWarnings("deprecation") public BigDecimal getBigDecimal(String columnLabel, int scale) throws SQLException { return rs.getBigDecimal(columnLabel, scale); } @@ -363,10 +365,12 @@ public class ResultSetAdapter implements ResultSet{ return rs.getType(); } + @SuppressWarnings("deprecation") public InputStream getUnicodeStream(int columnIndex) throws SQLException { return rs.getUnicodeStream(columnIndex); } + @SuppressWarnings("deprecation") public InputStream getUnicodeStream(String columnLabel) throws SQLException { return rs.getUnicodeStream(columnLabel); }