You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ps...@apache.org on 2009/10/31 19:13:15 UTC

svn commit: r831576 - in /commons/proper/dbcp/trunk: src/java/org/apache/commons/jocl/JOCLContentHandler.java xdocs/changes.xml

Author: psteitz
Date: Sat Oct 31 18:13:14 2009
New Revision: 831576

URL: http://svn.apache.org/viewvc?rev=831576&view=rev
Log:
Removed incorrectly advertised exception. JIRA: DBCP-302.  Thanks to Sebastian Bazley.

Modified:
    commons/proper/dbcp/trunk/src/java/org/apache/commons/jocl/JOCLContentHandler.java
    commons/proper/dbcp/trunk/xdocs/changes.xml

Modified: commons/proper/dbcp/trunk/src/java/org/apache/commons/jocl/JOCLContentHandler.java
URL: http://svn.apache.org/viewvc/commons/proper/dbcp/trunk/src/java/org/apache/commons/jocl/JOCLContentHandler.java?rev=831576&r1=831575&r2=831576&view=diff
==============================================================================
--- commons/proper/dbcp/trunk/src/java/org/apache/commons/jocl/JOCLContentHandler.java (original)
+++ commons/proper/dbcp/trunk/src/java/org/apache/commons/jocl/JOCLContentHandler.java Sat Oct 31 18:13:14 2009
@@ -774,7 +774,7 @@
             return _parent;
         }
 
-        public Object createObject() throws InstantiationException, ClassNotFoundException, IllegalAccessException, InvocationTargetException {
+        public Object createObject() throws InstantiationException, IllegalAccessException, InvocationTargetException {
             if(_isnull) {
                 return null;
             } else if( _isgroup ) {

Modified: commons/proper/dbcp/trunk/xdocs/changes.xml
URL: http://svn.apache.org/viewvc/commons/proper/dbcp/trunk/xdocs/changes.xml?rev=831576&r1=831575&r2=831576&view=diff
==============================================================================
--- commons/proper/dbcp/trunk/xdocs/changes.xml (original)
+++ commons/proper/dbcp/trunk/xdocs/changes.xml Sat Oct 31 18:13:14 2009
@@ -42,6 +42,10 @@
      new features as well as bug fixes and instrumentation.  Some bug fixes
      will change semantics (e.g. connection close will become idempotent).
      The minimum JDK level will be increased to 1.4">
+      <action dev="psteitz" type="fix" issue="DBCP-302" due-to="Sebastian Bazley">
+        Removed incorrectly advertised ClassNotFoundException from
+        JOCLContentHandler.ConstructorDetails.createObject().
+      </action>
       <action dev="markt" type="update" issue="DBCP-203" due-to="Mark Grand">
         Make the class loader used to load the JDBC driver configurable for the
         BasicDatasource.