rsitze 2002/06/10 16:48:52 Modified: java/src/org/apache/axis/encoding DeserializerImpl.java Log: Correct to maintain legacy test-logic Revision Changes Path 1.16 +1 -1 xml-axis/java/src/org/apache/axis/encoding/DeserializerImpl.java Index: DeserializerImpl.java =================================================================== RCS file: /home/cvs/xml-axis/java/src/org/apache/axis/encoding/DeserializerImpl.java,v retrieving revision 1.15 retrieving revision 1.16 diff -u -r1.15 -r1.16 --- DeserializerImpl.java 10 Jun 2002 22:54:49 -0000 1.15 +++ DeserializerImpl.java 10 Jun 2002 23:48:52 -0000 1.16 @@ -323,7 +323,7 @@ // If the xsi:nil attribute, set the value to null and return since // there is nothing to deserialize. - if (JavaUtils.isTrue(Constants.getValue(attributes, + if (JavaUtils.isTrueExplicitly(Constants.getValue(attributes, Constants.URIS_SCHEMA_XSI, "nil"))) { value = null;