You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by sc...@apache.org on 2002/03/01 20:54:44 UTC

cvs commit: xml-axis/java/src/org/apache/axis/wsdl/fromJava ClassRep.java

scheu       02/03/01 11:54:44

  Modified:    java/src/org/apache/axis/wsdl/fromJava ClassRep.java
  Log:
  Thanks Tom for pointing this out.
  
  Revision  Changes    Path
  1.20      +0 -2      xml-axis/java/src/org/apache/axis/wsdl/fromJava/ClassRep.java
  
  Index: ClassRep.java
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/src/org/apache/axis/wsdl/fromJava/ClassRep.java,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- ClassRep.java	1 Mar 2002 18:38:31 -0000	1.19
  +++ ClassRep.java	1 Mar 2002 19:54:44 -0000	1.20
  @@ -805,7 +805,6 @@
                   return false;
               }
   
  -            System.out.println("getter=" + setter);
               m = cls.getDeclaredMethod(getter, new Class[] {int.class});
               mod = m.getModifiers();
               if (!Modifier.isPublic(mod)) {
  @@ -815,7 +814,6 @@
           catch (NoSuchMethodException ex) {
               return false;
           }
  -        System.out.println("indexed property");
           return true;
       }
   };