This is an automated email from the git hooks/post-receive script. ebourg-guest pushed a commit to tag REL7_3_2 in repository libpostgresql-jdbc-java.
commit ed1362c01aac4cedcb339c29f7eee4aee7bc38da Author: Barry Lind <[email protected]> Date: Wed Nov 20 20:42:24 2002 +0000 Fix a stupid cut and paste error from the commit last night. Modified Files: Tag: REL7_3_STABLE AbstractJdbc2Statement.java --- org/postgresql/jdbc2/AbstractJdbc2Statement.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/org/postgresql/jdbc2/AbstractJdbc2Statement.java b/org/postgresql/jdbc2/AbstractJdbc2Statement.java index a77fc50..950375c 100644 --- a/org/postgresql/jdbc2/AbstractJdbc2Statement.java +++ b/org/postgresql/jdbc2/AbstractJdbc2Statement.java @@ -83,18 +83,18 @@ public abstract class AbstractJdbc2Statement extends org.postgresql.jdbc1.Abstra String[] l_origBindTypes = m_bindTypes; for (i = 0;i < size;i++) { - //set state from batch - Object[] l_statement = (Object[])batch.elementAt(i); + //set state from batch + Object[] l_statement = (Object[])batch.elementAt(i); this.m_sqlFragments = (String[])l_statement[0]; this.m_binds = (Object[])l_statement[1]; this.m_bindTypes = (String[])l_statement[2]; result[i] = this.executeUpdate(); } - //restore state of statement - String[] m_sqlFragments = l_origSqlFragments; - Object[] m_binds = l_origBinds; - String[] m_bindTypes = l_origBindTypes; + //restore state of statement + m_sqlFragments = l_origSqlFragments; + m_binds = l_origBinds; + m_bindTypes = l_origBindTypes; } catch (SQLException e) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/libpostgresql-jdbc-java.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

