gdaniels 2002/06/29 10:42:19
Modified: java/src/org/apache/axis/client Call.java
Log:
A little code cleanup.
Revision Changes Path
1.150 +3 -17 xml-axis/java/src/org/apache/axis/client/Call.java
Index: Call.java
===================================================================
RCS file: /home/cvs/xml-axis/java/src/org/apache/axis/client/Call.java,v
retrieving revision 1.149
retrieving revision 1.150
diff -u -r1.149 -r1.150
--- Call.java 27 Jun 2002 23:06:39 -0000 1.149
+++ Call.java 29 Jun 2002 17:42:19 -0000 1.150
@@ -89,7 +89,6 @@
import javax.wsdl.Binding;
import javax.wsdl.BindingInput;
import javax.wsdl.BindingOperation;
-import javax.wsdl.Definition;
import javax.wsdl.Input;
import javax.wsdl.Operation;
import javax.wsdl.Output;
@@ -1172,7 +1171,7 @@
* @throws java.rmi.RemoteException if there's an error
*/
public Object invoke(Object[] params) throws java.rmi.RemoteException {
- long t0=0, t1=0, t2=0, t3=0;
+ long t0=0, t1=0;
if( tlog.isDebugEnabled() ) {
t0=System.currentTimeMillis();
}
@@ -1272,7 +1271,6 @@
throws java.rmi.RemoteException {
try {
Message msg = null ;
- int i ;
msg = new Message( env );
setRequestMessage( msg );
@@ -1622,19 +1620,6 @@
}
}
- /**
- * Map a type for deserialization.
- *
- * Note: Not part of JAX-RPC specification.
- *
- * @param qName the xsi:type QName of an XML Schema type.
- * @param _class the class of the associated Java data type.
- * @param deserializerFactory a factory which can create deserializer
- * instances for this type.
- * @throws IntrospectionException _class is not compatible with the
- * specified deserializer.
- */
-
/************************************************
* Invocation
*/
@@ -1978,6 +1963,7 @@
log.debug(writer.getBuffer().toString());
}
}
+
if(!invokeOneWay) {
invokeEngine(msgContext);
} else {
@@ -2017,7 +2003,7 @@
}
}
- private void invokeEngineOneWay(final MessageContext msgContext) throws
AxisFault {
+ private void invokeEngineOneWay(final MessageContext msgContext) {
Runnable runnable = new Runnable(){
public void run() {
try {