[libpostgresql-jdbc-java] 01/01: Backpatch jdbc1 compile failure fix.
Emmanuel Bourg
ebourg-guest at moszumanska.debian.org
Mon Jan 9 10:18:57 UTC 2017
This is an automated email from the git hooks/post-receive script.
ebourg-guest pushed a commit to tag REL7_1_2
in repository libpostgresql-jdbc-java.
commit 78eb5549506b35d6bd13b915f34c49ec604f1f7c
Author: Bruce Momjian <bruce at momjian.us>
Date: Sat May 12 20:45:45 2001 +0000
Backpatch jdbc1 compile failure fix.
---
org/postgresql/jdbc1/Statement.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/org/postgresql/jdbc1/Statement.java b/org/postgresql/jdbc1/Statement.java
index 2dc617b..d37350c 100644
--- a/org/postgresql/jdbc1/Statement.java
+++ b/org/postgresql/jdbc1/Statement.java
@@ -288,7 +288,7 @@ public class Statement implements java.sql.Statement
*/
public java.sql.ResultSet getResultSet() throws SQLException
{
- if (result != null) && ((org.postgresql.ResultSet)result.reallyResultSet())
+ if (result != null && ((org.postgresql.ResultSet)result).reallyResultSet())
return result;
return null;
}
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/libpostgresql-jdbc-java.git
More information about the pkg-java-commits
mailing list