jstrachan    2002/10/23 03:17:17

  Modified:    sql/src/java/org/apache/commons/sql/model Table.java
  Log:
  Patched the code so that the unit tests work again. The new method that Steven 
added, 'addColumns' to the Table class was breaking the betwixt introspector and so 
all the unit test cases were failing.
  
  Revision  Changes    Path
  1.7       +1 -1      
jakarta-commons-sandbox/sql/src/java/org/apache/commons/sql/model/Table.java
  
  Index: Table.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons-sandbox/sql/src/java/org/apache/commons/sql/model/Table.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- Table.java        21 Oct 2002 11:38:03 -0000      1.6
  +++ Table.java        23 Oct 2002 10:17:16 -0000      1.7
  @@ -142,7 +142,7 @@
           columns.add(column);
       }
   
  -    public void addColumns(List columns)
  +    public void addAll(List columns)
       {
           if(columns != null &&
              columns.size() > 0)
  
  
  

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

Reply via email to