From: Dave Cramer Date: Wed, 6 Mar 2002 03:07:45 +0000 (+0000) Subject: changed Cancel to cancel X-Git-Tag: REL7_3~1954 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=39c58b906579316d496963f1261c7fbc0d619b1d;p=thirdparty%2Fpostgresql.git changed Cancel to cancel --- diff --git a/src/interfaces/jdbc/org/postgresql/jdbc2/Statement.java b/src/interfaces/jdbc/org/postgresql/jdbc2/Statement.java index 7ca9f6d5d05..afe264afd60 100644 --- a/src/interfaces/jdbc/org/postgresql/jdbc2/Statement.java +++ b/src/interfaces/jdbc/org/postgresql/jdbc2/Statement.java @@ -211,7 +211,7 @@ public class Statement extends org.postgresql.Statement implements java.sql.Stat return result; } - public void Cancel() throws SQLException + public void cancel() throws SQLException { connection.cancelQuery(); }