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/09/26 23:13:26 UTC

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

scheu       2002/09/26 14:13:25

  Modified:    java/src/org/apache/axis/wsdl/fromJava Emitter.java
                        Types.java
  Log:
  Two minor changes Tom caught while reviewing the code.
  
  Revision  Changes    Path
  1.64      +2 -3      xml-axis/java/src/org/apache/axis/wsdl/fromJava/Emitter.java
  
  Index: Emitter.java
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/src/org/apache/axis/wsdl/fromJava/Emitter.java,v
  retrieving revision 1.63
  retrieving revision 1.64
  diff -u -r1.63 -r1.64
  --- Emitter.java	26 Sep 2002 20:59:58 -0000	1.63
  +++ Emitter.java	26 Sep 2002 21:13:25 -0000	1.64
  @@ -1088,9 +1088,8 @@
               QName typeQName = 
                   types.writeTypeForPart(javaType,
                                          param.getTypeQName());
  -            QName elemQName = 
  -                types.writeElementForPart(javaType,
  -                                          param.getTypeQName());
  +            types.writeElementForPart(javaType,
  +                                      param.getTypeQName());
               if (typeQName != null) {
                   part.setName(param.getName());
                   part.setTypeName(typeQName);
  
  
  
  1.62      +1 -1      xml-axis/java/src/org/apache/axis/wsdl/fromJava/Types.java
  
  Index: Types.java
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/src/org/apache/axis/wsdl/fromJava/Types.java,v
  retrieving revision 1.61
  retrieving revision 1.62
  diff -u -r1.61 -r1.62
  --- Types.java	26 Sep 2002 20:32:55 -0000	1.61
  +++ Types.java	26 Sep 2002 21:13:25 -0000	1.62
  @@ -256,7 +256,7 @@
                "Array".equals(qname.getLocalPart()))) {
               qname = getTypeQName(type);
               if (qname == null) {
  -                throw new AxisFault("Clss:" + type.getName()); 
  +                throw new AxisFault("Class:" + type.getName()); 
               }
           }