Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 88798 invoked from network); 11 Jun 2007 14:23:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 11 Jun 2007 14:23:12 -0000 Received: (qmail 90104 invoked by uid 500); 11 Jun 2007 14:23:15 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 90090 invoked by uid 500); 11 Jun 2007 14:23:15 -0000 Mailing-List: contact commits-help@harmony.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@harmony.apache.org Delivered-To: mailing list commits@harmony.apache.org Received: (qmail 90081 invoked by uid 99); 11 Jun 2007 14:23:15 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 11 Jun 2007 07:23:15 -0700 X-ASF-Spam-Status: No, hits=-99.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 11 Jun 2007 07:23:11 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 12E9E1A981A; Mon, 11 Jun 2007 07:22:51 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r546157 - /harmony/enhanced/classlib/trunk/modules/sql/src/main/java/javax/sql/rowset/serial/SQLInputImpl.java Date: Mon, 11 Jun 2007 14:22:50 -0000 To: commits@harmony.apache.org From: tellison@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070611142251.12E9E1A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: tellison Date: Mon Jun 11 07:22:50 2007 New Revision: 546157 URL: http://svn.apache.org/viewvc?view=rev&rev=546157 Log: Remove not implemented markers for methods that are now written. Modified: harmony/enhanced/classlib/trunk/modules/sql/src/main/java/javax/sql/rowset/serial/SQLInputImpl.java Modified: harmony/enhanced/classlib/trunk/modules/sql/src/main/java/javax/sql/rowset/serial/SQLInputImpl.java URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/sql/src/main/java/javax/sql/rowset/serial/SQLInputImpl.java?view=diff&rev=546157&r1=546156&r2=546157 ============================================================================== --- harmony/enhanced/classlib/trunk/modules/sql/src/main/java/javax/sql/rowset/serial/SQLInputImpl.java (original) +++ harmony/enhanced/classlib/trunk/modules/sql/src/main/java/javax/sql/rowset/serial/SQLInputImpl.java Mon Jun 11 07:22:50 2007 @@ -140,7 +140,7 @@ * * @see java.sql.SQLInput#readBoolean() */ - public boolean readBoolean() throws SQLException, NotImplementedException { + public boolean readBoolean() throws SQLException { if(readPosition >= attributes.length) { throw new SQLException(Messages.getString("sql.35")); //$NON-NLS-1$ } @@ -378,7 +378,7 @@ * * @see java.sql.SQLInput#wasNull() */ - public boolean wasNull() throws SQLException, NotImplementedException { + public boolean wasNull() throws SQLException { if (readPosition > attributes.length) { throw new SQLException(Messages.getString("sql.35")); //$NON-NLS-1$ }