You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jaxme-dev@ws.apache.org by jo...@apache.org on 2004/03/29 14:29:28 UTC

cvs commit: ws-jaxme/src/jaxme/org/apache/ws/jaxme/util NamespaceSupport.java

jochen      2004/03/29 04:29:28

  Modified:    src/jaxme/org/apache/ws/jaxme/util NamespaceSupport.java
  Log:
  Fixed bug in the namespace handling, which caused endPrefixMapping events to be suppressed,
  
  Revision  Changes    Path
  1.4       +2 -3      ws-jaxme/src/jaxme/org/apache/ws/jaxme/util/NamespaceSupport.java
  
  Index: NamespaceSupport.java
  ===================================================================
  RCS file: /home/cvs/ws-jaxme/src/jaxme/org/apache/ws/jaxme/util/NamespaceSupport.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- NamespaceSupport.java	16 Feb 2004 23:39:53 -0000	1.3
  +++ NamespaceSupport.java	29 Mar 2004 12:29:28 -0000	1.4
  @@ -239,8 +239,7 @@
       }
       
       public String setContext(int i) {
  -        int current = getContext();
  -        if (current == getContext()) {
  +        if (getContext() == i) {
               return null;
           }
           String result = cachedPrefix;
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: jaxme-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: jaxme-dev-help@ws.apache.org