Author: slaws
Date: Wed Mar  3 11:07:00 2010
New Revision: 918408

URL: http://svn.apache.org/viewvc?rev=918408&view=rev
Log:
TUSCANY-3480 revert this workaround as this in not the root cause of the 
problems we see in the otests. 

Modified:
    
tuscany/sca-java-2.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/runtime/impl/EndpointReferenceBinderImpl.java

Modified: 
tuscany/sca-java-2.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/runtime/impl/EndpointReferenceBinderImpl.java
URL: 
http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/runtime/impl/EndpointReferenceBinderImpl.java?rev=918408&r1=918407&r2=918408&view=diff
==============================================================================
--- 
tuscany/sca-java-2.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/runtime/impl/EndpointReferenceBinderImpl.java
 (original)
+++ 
tuscany/sca-java-2.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/runtime/impl/EndpointReferenceBinderImpl.java
 Wed Mar  3 11:07:00 2010
@@ -514,9 +514,7 @@
         // if there are unresolved intents the service and reference don't 
match
         if (eprIntents.size() > 0){
             matchAudit.append("No match because there are unresolved intents " 
+ eprIntents.toString() + " ");
-// FIXME: TUSCANY-3480, this should return false but as the code isn't 
finished for now let it go and return true
-//            return false;
-            return true;
+            return false;
         }   
         
         // if there are no policy sets on epr or ep side then 


Reply via email to