Commit 0b68b89b authored by Bruce Momjian's avatar Bruce Momjian

Fix paren typo in java.

parent 46c93bd5
...@@ -288,7 +288,7 @@ public class Statement implements java.sql.Statement ...@@ -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;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment