mirror of
https://github.com/querydsl/querydsl.git
synced 2026-06-21 21:14:12 +08:00
added @SuppressWarnings("deprecation")
This commit is contained in:
parent
3fc743b43f
commit
6341c48560
@ -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);
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user