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 gd...@apache.org on 2001/07/07 15:24:02 UTC

cvs commit: xml-axis/java/src/org/apache/axis MessageContext.java

gdaniels    01/07/07 06:24:02

  Modified:    java/src/org/apache/axis MessageContext.java
  Log:
  Add check for null closer to the core.
  
  Revision  Changes    Path
  1.41      +1 -0      xml-axis/java/src/org/apache/axis/MessageContext.java
  
  Index: MessageContext.java
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/src/org/apache/axis/MessageContext.java,v
  retrieving revision 1.40
  retrieving revision 1.41
  diff -u -r1.40 -r1.41
  --- MessageContext.java	2001/06/27 16:18:17	1.40
  +++ MessageContext.java	2001/07/07 13:24:02	1.41
  @@ -356,6 +356,7 @@
       }
   
       public void setProperty(String propName, Object propValue) {
  +        if (propValue == null) return;
           if ( bag == null ) bag = new Hashtable() ;
           bag.put( propName, propValue );
       }