You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by dg...@apache.org on 2003/11/09 05:54:32 UTC

cvs commit: jakarta-commons/dbutils/src/java/org/apache/commons/dbutils ProxyFactory.java

dgraham     2003/11/08 20:54:32

  Modified:    dbutils/src/java/org/apache/commons/dbutils
                        ProxyFactory.java
  Log:
  Fix createCallableStatement() return type.
  
  Revision  Changes    Path
  1.3       +4 -4      jakarta-commons/dbutils/src/java/org/apache/commons/dbutils/ProxyFactory.java
  
  Index: ProxyFactory.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/dbutils/src/java/org/apache/commons/dbutils/ProxyFactory.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- ProxyFactory.java	5 Nov 2003 00:40:43 -0000	1.2
  +++ ProxyFactory.java	9 Nov 2003 04:54:32 -0000	1.3
  @@ -147,7 +147,7 @@
        * Creates a new proxy <code>CallableStatement</code> object.
        * @param handler The handler that intercepts/overrides method calls.
        */
  -    public PreparedStatement createCallableStatement(InvocationHandler handler) {
  +    public CallableStatement createCallableStatement(InvocationHandler handler) {
           return (CallableStatement) Proxy.newProxyInstance(
               handler.getClass().getClassLoader(),
               callableStatementClass,
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org