Commit ef6a8043 authored by Dave Cramer's avatar Dave Cramer

patch to build under jdk1.1 from Richard Scranton

parent 4bb71ef5
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
* Copyright (c) 2003, PostgreSQL Global Development Group * Copyright (c) 2003, PostgreSQL Global Development Group
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/interfaces/jdbc/org/postgresql/jdbc1/AbstractJdbc1ResultSet.java,v 1.24 2003/11/29 19:52:10 pgsql Exp $ * $PostgreSQL: pgsql/src/interfaces/jdbc/org/postgresql/jdbc1/AbstractJdbc1ResultSet.java,v 1.25 2003/12/12 17:58:34 davec Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -834,7 +834,7 @@ public abstract class AbstractJdbc1ResultSet implements BaseResultSet ...@@ -834,7 +834,7 @@ public abstract class AbstractJdbc1ResultSet implements BaseResultSet
try try
{ {
if (Double.parseDouble(s)==1) if (Double.valueOf(s).doubleValue()==1)
return true; return true;
} }
catch (NumberFormatException e) catch (NumberFormatException e)
......
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