dims 2003/02/28 06:59:37
Modified: java/src/org/apache/axis/message RPCElement.java
Log:
Breaks "ant clean all-tests"....Commenting it out till James gets a chance to take a
look.
Revision Changes Path
1.83 +10 -10 xml-axis/java/src/org/apache/axis/message/RPCElement.java
Index: RPCElement.java
===================================================================
RCS file: /home/cvs/xml-axis/java/src/org/apache/axis/message/RPCElement.java,v
retrieving revision 1.82
retrieving revision 1.83
diff -u -r1.82 -r1.83
--- RPCElement.java 27 Feb 2003 21:12:10 -0000 1.82
+++ RPCElement.java 28 Feb 2003 14:59:37 -0000 1.83
@@ -251,16 +251,16 @@
if(!JavaUtils.isConvertable(value, sigType))
match = false;
- if (!sigType.isArray() &&
value.getClass().isArray() &&
- !sigType.equals(Object.class)) {
- match = false;
- }
-
- if (operation.getUse() == Use.ENCODED &&
- sigType.isArray() &&
- !value.getClass().isArray()) {
- match = false;
- }
+ //if (!sigType.isArray() &&
value.getClass().isArray() &&
+ // !sigType.equals(Object.class)) {
+ // match = false;
+ //}
+ //
+ //if (operation.getUse() == Use.ENCODED &&
+ // sigType.isArray() &&
+ // !value.getClass().isArray()) {
+ // match = false;
+ //}
}
}
// This is not the right operation, try the next one.