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 di...@apache.org on 2005/02/07 14:15:50 UTC

cvs commit: ws-axis/java/src/org/apache/axis/encoding/ser SimpleDeserializer.java

dims        2005/02/07 05:15:50

  Modified:    java/src/org/apache/axis/encoding/ser
                        SimpleDeserializer.java
  Log:
  fix failure in test16Schema2ServiceEchoDocumentTest
  
  Revision  Changes    Path
  1.46      +2 -1      ws-axis/java/src/org/apache/axis/encoding/ser/SimpleDeserializer.java
  
  Index: SimpleDeserializer.java
  ===================================================================
  RCS file: /home/cvs/ws-axis/java/src/org/apache/axis/encoding/ser/SimpleDeserializer.java,v
  retrieving revision 1.45
  retrieving revision 1.46
  diff -u -r1.45 -r1.46
  --- SimpleDeserializer.java	7 Feb 2005 07:54:04 -0000	1.45
  +++ SimpleDeserializer.java	7 Feb 2005 13:15:50 -0000	1.46
  @@ -98,6 +98,8 @@
               if (typeDesc == null) {
                   typeDesc = TypeDesc.getTypeDescForClass(javaType);
               }
  +        }
  +
           // Get the cached propertyDescriptor from the type or
           // generate a fresh one.
           if (typeDesc != null) {
  @@ -110,7 +112,6 @@
                   propertyMap.put(descriptor.getName(), descriptor);
               }
           }
  -        }
       }
       
       /**