From: Dave Cramer Date: Wed, 6 Mar 2002 03:07:45 +0000 (+0000) Subject: changed Cancel to cancel X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=ffcbf309197ae22eaee59ded6414047947246822;p=users%2Fbernd%2Fpostgres.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 7ca9f6d5d0..afe264afd6 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(); }