You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by sl...@apache.org on 2009/10/16 10:56:21 UTC

svn commit: r825814 - /tuscany/java/sca/modules/builder/src/main/java/org/apache/tuscany/sca/builder/impl/ComponentBuilderImpl.java

Author: slaws
Date: Fri Oct 16 08:56:21 2009
New Revision: 825814

URL: http://svn.apache.org/viewvc?rev=825814&view=rev
Log:
Fix up some stragglers that are now breaking the build after the uber monitor commit at r825773

Modified:
    tuscany/java/sca/modules/builder/src/main/java/org/apache/tuscany/sca/builder/impl/ComponentBuilderImpl.java

Modified: tuscany/java/sca/modules/builder/src/main/java/org/apache/tuscany/sca/builder/impl/ComponentBuilderImpl.java
URL: http://svn.apache.org/viewvc/tuscany/java/sca/modules/builder/src/main/java/org/apache/tuscany/sca/builder/impl/ComponentBuilderImpl.java?rev=825814&r1=825813&r2=825814&view=diff
==============================================================================
--- tuscany/java/sca/modules/builder/src/main/java/org/apache/tuscany/sca/builder/impl/ComponentBuilderImpl.java (original)
+++ tuscany/java/sca/modules/builder/src/main/java/org/apache/tuscany/sca/builder/impl/ComponentBuilderImpl.java Fri Oct 16 08:56:21 2009
@@ -121,7 +121,7 @@
             // hierarchy must be done before we calculate the component type
             
             // check that the implementation is present
-            if (!isComponentImplementationPresent(component)){
+            if (!isComponentImplementationPresent(component, monitor)){
                 return;
             }
     
@@ -162,7 +162,7 @@
      * @param component
      * @return true if the implementation is present and resolved
      */
-    private boolean isComponentImplementationPresent(Component component){
+    private boolean isComponentImplementationPresent(Component component, Monitor monitor){
         Implementation implementation = component.getImplementation();
         if (implementation == null) {
             // A component must have an implementation