Show
Ignore:
Timestamp:
11/01/09 16:11:16 (2 years ago)
Author:
amandel
Message:

Disable code that does not compile with 1.6.0 JDK

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/java/org/jcoderz/commons/util/DbUtil.java

    r1011 r1566  
    286286         PreparedStatement pstmt, int maxBatchSize) 
    287287   { 
    288       return new LimitedBatchSizePreparedStatement(pstmt, maxBatchSize); 
     288      return null; // new LimitedBatchSizePreparedStatement(pstmt, maxBatchSize); 
    289289   } 
    290290 
     
    326326 
    327327   private static final class LimitedBatchSizePreparedStatement 
    328       implements PreparedStatement 
     328// FIXME: does not work with JDK1.6.0     implements PreparedStatement 
    329329   { 
    330330      private final PreparedStatement mPreparedStatement;