Author: mcombellack
Date: Thu Jul  3 07:47:51 2008
New Revision: 673694

URL: http://svn.apache.org/viewvc?rev=673694&view=rev
Log:
No need to call the toXMLString() method twice as we already have the output 
from this method from an earlier call

Modified:
    
tuscany/java/sca/modules/core/src/main/java/org/apache/tuscany/sca/core/context/CallableReferenceImpl.java

Modified: 
tuscany/java/sca/modules/core/src/main/java/org/apache/tuscany/sca/core/context/CallableReferenceImpl.java
URL: 
http://svn.apache.org/viewvc/tuscany/java/sca/modules/core/src/main/java/org/apache/tuscany/sca/core/context/CallableReferenceImpl.java?rev=673694&r1=673693&r2=673694&view=diff
==============================================================================
--- 
tuscany/java/sca/modules/core/src/main/java/org/apache/tuscany/sca/core/context/CallableReferenceImpl.java
 (original)
+++ 
tuscany/java/sca/modules/core/src/main/java/org/apache/tuscany/sca/core/context/CallableReferenceImpl.java
 Thu Jul  3 07:47:51 2008
@@ -364,7 +364,7 @@
                 out.writeBoolean(false);
             } else {
                 out.writeBoolean(true);
-                out.writeUTF(toXMLString());
+                out.writeUTF(xml);
             }
         } catch (Exception e) {
             // e.printStackTrace();


Reply via email to