1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-08 11:42:09 +03:00

Fix paren typo in java.

This commit is contained in:
Bruce Momjian
2001-05-08 15:29:14 +00:00
parent 46c93bd532
commit 0b68b89b02

View File

@ -288,7 +288,7 @@ public class Statement implements java.sql.Statement
*/ */
public java.sql.ResultSet getResultSet() throws SQLException 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 result;
return null; return null;
} }