dgraham     2003/10/14 19:41:41

  Modified:    dbutils/src/java/org/apache/commons/dbutils DbUtils.java
  Log:
  Updated Apache license and imports.
  
  Revision  Changes    Path
  1.26      +14 -4     
jakarta-commons-sandbox/dbutils/src/java/org/apache/commons/dbutils/DbUtils.java
  
  Index: DbUtils.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons-sandbox/dbutils/src/java/org/apache/commons/dbutils/DbUtils.java,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -u -r1.25 -r1.26
  --- DbUtils.java      12 Oct 2003 09:37:28 -0000      1.25
  +++ DbUtils.java      15 Oct 2003 02:41:41 -0000      1.26
  @@ -1,9 +1,13 @@
   /*
  + * $Header$
  + * $Revision$
  + * $Date$
  + * 
    * ====================================================================
    *
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 1999-2003 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,18 @@
    * <http://www.apache.org/>.
    *
    */
  + 
   package org.apache.commons.dbutils;
   
  -import java.sql.*;
  -
  -import java.util.Iterator;
  +import java.sql.Connection;
  +import java.sql.PreparedStatement;
  +import java.sql.ResultSet;
  +import java.sql.ResultSetMetaData;
  +import java.sql.SQLException;
  +import java.sql.Statement;
  +import java.sql.Types;
   import java.util.ArrayList;
  +import java.util.Iterator;
   import java.util.List;
   
   public final class DbUtils {
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to