bodewig     2003/07/24 07:20:32

  Modified:    src/main/org/apache/tools/ant IntrospectionHelper.java
  Log:
  JDK 1.2 compatibility
  
  Revision  Changes    Path
  1.64      +1 -1      
ant/src/main/org/apache/tools/ant/IntrospectionHelper.java
  
  Index: IntrospectionHelper.java
  ===================================================================
  RCS file: 
/home/cvs/ant/src/main/org/apache/tools/ant/IntrospectionHelper.java,v
  retrieving revision 1.63
  retrieving revision 1.64
  diff -u -r1.63 -r1.64
  --- IntrospectionHelper.java  24 Jul 2003 13:54:04 -0000      1.63
  +++ IntrospectionHelper.java  24 Jul 2003 14:20:31 -0000      1.64
  @@ -895,7 +895,7 @@
                           throws InvocationTargetException, 
IllegalAccessException {
                           m.invoke(parent,
                                    new Boolean[] {
  -                                     
Boolean.valueOf(Project.toBoolean(value))});
  +                                     new Boolean(Project.toBoolean(value))});
                       }
   
                   };
  
  
  

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

Reply via email to