You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by an...@apache.org on 2012/08/16 17:58:24 UTC

svn commit: r1373893 - /tuscany/sca-java-2.x/trunk/modules/implementation-web-runtime/src/main/java/org/apache/tuscany/sca/implementation/web/runtime/ComponentContextProxy.java

Author: antelder
Date: Thu Aug 16 15:58:24 2012
New Revision: 1373893

URL: http://svn.apache.org/viewvc?rev=1373893&view=rev
Log:
Fix compile error with method signature

Modified:
    tuscany/sca-java-2.x/trunk/modules/implementation-web-runtime/src/main/java/org/apache/tuscany/sca/implementation/web/runtime/ComponentContextProxy.java

Modified: tuscany/sca-java-2.x/trunk/modules/implementation-web-runtime/src/main/java/org/apache/tuscany/sca/implementation/web/runtime/ComponentContextProxy.java
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/modules/implementation-web-runtime/src/main/java/org/apache/tuscany/sca/implementation/web/runtime/ComponentContextProxy.java?rev=1373893&r1=1373892&r2=1373893&view=diff
==============================================================================
--- tuscany/sca-java-2.x/trunk/modules/implementation-web-runtime/src/main/java/org/apache/tuscany/sca/implementation/web/runtime/ComponentContextProxy.java (original)
+++ tuscany/sca-java-2.x/trunk/modules/implementation-web-runtime/src/main/java/org/apache/tuscany/sca/implementation/web/runtime/ComponentContextProxy.java Thu Aug 16 15:58:24 2012
@@ -89,4 +89,9 @@ public class ComponentContextProxy imple
         return getComponentContext().getExtensionPointRegistry();
     }
 
+    @Override
+    public Object getNode() {
+        return getComponentContext().getNode();
+    }
+
 }