Sophie

Sophie

distrib > Mageia > 2 > i586 > media > core-release-src > by-pkgid > 1aa76d726810e5e54a293445dbb341fa > files > 6

glassfish-jstl-1.2.0-2.mga2.src.rpm

--- src/org/apache/taglibs/standard/tag/common/sql/DataSourceWrapper.java	2012-01-26 15:24:54.476208358 +0100
+++ src/org/apache/taglibs/standard/tag/common/sql/DataSourceWrapper.java-gil	2012-01-26 15:30:15.733202008 +0100
@@ -42,6 +42,8 @@
 import java.sql.Connection;
 import java.sql.DriverManager;
 import java.sql.SQLException;
+import java.sql.SQLFeatureNotSupportedException;
+import java.util.logging.Logger;
 
 import javax.sql.DataSource;
 
@@ -143,4 +145,8 @@
         throw new RuntimeException("Not implemented method isWrapperFor()");
     }   
 
+    public Logger getParentLogger() throws SQLFeatureNotSupportedException {
+        throw new SQLFeatureNotSupportedException(Resources.getMessage("NOT_SUPPORTED"));
+    }
+
 }