summaryrefslogtreecommitdiff
path: root/japanese/postgresql-tcltk/files/patch-jdbc1-statement
blob: 41a9a2971f5ae0276ef85e54099852fa2b2d753e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
--- src/interfaces/jdbc/org/postgresql/jdbc1/Statement.java~	Fri Feb 23 19:12:23 2001
+++ src/interfaces/jdbc/org/postgresql/jdbc1/Statement.java	Wed Apr 18 08:51:03 2001
@@ -288,8 +288,8 @@
 	 */
 	public java.sql.ResultSet getResultSet() throws SQLException
 	{
-          if (result != null) && ((org.postgresql.ResultSet)result.reallyResultSet())
-            return result;
+          if (result != null && ((org.postgresql.ResultSet)result).reallyResultSet())
+	    return result;
           return null;
 	}