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 bu...@apache.org on 2002/10/02 22:46:55 UTC

cvs commit: xml-axis/java/src/org/apache/axis/wsdl/symbolTable SymbolTable.java

butek       2002/10/02 13:46:55

  Modified:    java/src/org/apache/axis/wsdl/symbolTable SymbolTable.java
  Log:
  Fix for http://nagoya.apache.org/bugzilla/show_bug.cgi?id=13214.
  
  XML import processing was faulty.  Thanks to Charles Savage
  (charlie1.savage@ps.ge.com) for the fix.
  
  Revision  Changes    Path
  1.43      +1 -1      xml-axis/java/src/org/apache/axis/wsdl/symbolTable/SymbolTable.java
  
  Index: SymbolTable.java
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/src/org/apache/axis/wsdl/symbolTable/SymbolTable.java,v
  retrieving revision 1.42
  retrieving revision 1.43
  diff -u -r1.42 -r1.43
  --- SymbolTable.java	2 Oct 2002 18:21:29 -0000	1.42
  +++ SymbolTable.java	2 Oct 2002 20:46:55 -0000	1.43
  @@ -612,7 +612,7 @@
                       if (!importedFiles.contains(url)) {
                           importedFiles.add(url);
                           String filename = url.toString();
  -                        populate(context, null,
  +                        populate(url, null,
                                   XMLUtils.newDocument(filename), filename);
                       }
                   }