From 096e7d34a87fbcce46887066b356e2edc0a780a6 Mon Sep 17 00:00:00 2001 From: samskivert Date: Tue, 20 Oct 2009 01:44:20 +0000 Subject: [PATCH] Javadoc fix from Dave. git-svn-id: https://samskivert.googlecode.com/svn/trunk@2642 6335cc39-0255-0410-8fd6-9bcaacd3b74c --- src/java/com/samskivert/jdbc/JDBCUtil.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/java/com/samskivert/jdbc/JDBCUtil.java b/src/java/com/samskivert/jdbc/JDBCUtil.java index e61089f9..f73dd0a6 100644 --- a/src/java/com/samskivert/jdbc/JDBCUtil.java +++ b/src/java/com/samskivert/jdbc/JDBCUtil.java @@ -81,7 +81,7 @@ public class JDBCUtil /** * Wraps the given connection in a proxied instance that will add all statements returned by - * methods called on the proxy (such as {@link Collection#createStatement}) to the supplied + * methods called on the proxy (such as {@link Connection#createStatement}) to the supplied * list. Thus you can create the proxy, pass the proxy to code that creates and uses statements * and then close any statements created by the code that operated on that Connection before * returning it to a pool, for example.