owenb       2002/11/11 07:49:41

  Modified:    java/src/org/apache/wsif/schema Parser.java
  Log:
  Fix in getAllSchemaTypes method - make use of the WSDLLocator that is passed to the 
method
  
  Revision  Changes    Path
  1.4       +1 -1      xml-axis-wsif/java/src/org/apache/wsif/schema/Parser.java
  
  Index: Parser.java
  ===================================================================
  RCS file: /home/cvs/xml-axis-wsif/java/src/org/apache/wsif/schema/Parser.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- Parser.java       8 Nov 2002 16:51:24 -0000       1.3
  +++ Parser.java       11 Nov 2002 15:49:41 -0000      1.4
  @@ -410,7 +410,7 @@
        public static void getAllSchemaTypes(Definition def, List schemaTypes, 
WSDLLocator loc) throws WSIFException {
                try {
               ArrayList schemas = new ArrayList();
  -            Parser.getTypesSchemas(def, schemas, null);
  +            Parser.getTypesSchemas(def, schemas, loc);
                Iterator si = schemas.iterator();
                while (si.hasNext()) {
                    Schema ts = (Schema) si.next();
  
  
  


Reply via email to