You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by dg...@apache.org on 2003/10/15 04:37:31 UTC

cvs commit: jakarta-commons-sandbox/dbutils/src/java/org/apache/commons/dbutils ResultSetIterator.java ResultSetIteratorV1.java

dgraham     2003/10/14 19:37:31

  Modified:    dbutils/src/java/org/apache/commons/dbutils
                        ResultSetIterator.java ResultSetIteratorV1.java
  Log:
  Removed unused imports.
  
  Revision  Changes    Path
  1.3       +10 -5     jakarta-commons-sandbox/dbutils/src/java/org/apache/commons/dbutils/ResultSetIterator.java
  
  Index: ResultSetIterator.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/dbutils/src/java/org/apache/commons/dbutils/ResultSetIterator.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- ResultSetIterator.java	12 Oct 2003 09:37:28 -0000	1.2
  +++ ResultSetIterator.java	15 Oct 2003 02:37:31 -0000	1.3
  @@ -1,9 +1,13 @@
   /*
  + * $Header$
  + * $Revision$
  + * $Date$
  + * 
    * ====================================================================
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999-2002 The Apache Software Foundation.  All rights
  + * Copyright (c) 2002-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -54,16 +58,17 @@
    * <http://www.apache.org/>.
    *
    */
  + 
   package org.apache.commons.dbutils;
   
   import java.sql.ResultSet;
  -import java.sql.ResultSetMetaData;
   import java.sql.SQLException;
  -
   import java.util.Iterator;
   
  -/// a version of result set iterator that is simpler, but needs isLast which oracle 
  -/// fails to offer. As such this is sidelined until Oracle adds features
  +/**
  + * A version of result set iterator that is simpler, but needs isLast which 
  + * Oracle fails to offer. As such this is sidelined until Oracle adds features.
  + */
   class ResultSetIterator implements Iterator {
   
       private ResultSet rs;
  
  
  
  1.3       +6 -3      jakarta-commons-sandbox/dbutils/src/java/org/apache/commons/dbutils/ResultSetIteratorV1.java
  
  Index: ResultSetIteratorV1.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/dbutils/src/java/org/apache/commons/dbutils/ResultSetIteratorV1.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- ResultSetIteratorV1.java	12 Oct 2003 09:37:28 -0000	1.2
  +++ ResultSetIteratorV1.java	15 Oct 2003 02:37:31 -0000	1.3
  @@ -1,9 +1,13 @@
   /*
  + * $Header$
  + * $Revision$
  + * $Date$
  + * 
    * ====================================================================
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999-2002 The Apache Software Foundation.  All rights
  + * Copyright (c) 2002-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -54,12 +58,11 @@
    * <http://www.apache.org/>.
    *
    */
  + 
   package org.apache.commons.dbutils;
   
   import java.sql.ResultSet;
  -import java.sql.ResultSetMetaData;
   import java.sql.SQLException;
  -
   import java.util.Iterator;
   
   class ResultSetIteratorV1 implements Iterator {
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org