Blame SOURCES/fix-1.6.0-build.patch

7563f4
--- standard/src/org/apache/taglibs/standard/tag/common/sql/DataSourceWrapper.java.sav	2004-07-20 00:06:07.000000000 +0300
7563f4
+++ standard/src/org/apache/taglibs/standard/tag/common/sql/DataSourceWrapper.java	2011-07-19 14:19:40.689712335 +0300
7563f4
@@ -111,5 +111,11 @@ public class DataSourceWrapper implement
7563f4
         throw new SQLException(Resources.getMessage("NOT_SUPPORTED"));
7563f4
     }
7563f4
 
7563f4
+    public boolean isWrapperFor(Class iface) throws SQLException {
7563f4
+        throw new SQLException(Resources.getMessage("NOT_SUPPORTED"));
7563f4
+    }
7563f4
+    public Object unwrap(Class iface) throws SQLException {
7563f4
+        throw new SQLException(Resources.getMessage("NOT_SUPPORTED"));
7563f4
+    }
7563f4
 
7563f4
 }