From ea853032a72c2891a6aa5488e23ed211b97f9298 Mon Sep 17 00:00:00 2001 From: kaloyane <kaloyane> Date: Thu, 23 Jun 2011 15:35:33 +0000 Subject: [PATCH] we have decided to use JRE 1.5 as default JRE in the Eclipse workspace, so it makes sense to ignore these 1.6 related warnings. SVN: 21830 --- .../generic/server/dataaccess/db/SqlUnitMigrationTest.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/openbis/sourceTest/java/ch/systemsx/cisd/openbis/generic/server/dataaccess/db/SqlUnitMigrationTest.java b/openbis/sourceTest/java/ch/systemsx/cisd/openbis/generic/server/dataaccess/db/SqlUnitMigrationTest.java index f51835390b7..c729d157f50 100644 --- a/openbis/sourceTest/java/ch/systemsx/cisd/openbis/generic/server/dataaccess/db/SqlUnitMigrationTest.java +++ b/openbis/sourceTest/java/ch/systemsx/cisd/openbis/generic/server/dataaccess/db/SqlUnitMigrationTest.java @@ -158,12 +158,13 @@ public final class SqlUnitMigrationTest } // NOTE: the following methods are needed because we compile with JDK 6 on Hudson - + @SuppressWarnings("unused") public boolean isWrapperFor(Class<?> arg0) throws SQLException { return false; } + @SuppressWarnings("unused") public <T> T unwrap(Class<T> arg0) throws SQLException { return null; -- GitLab