You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by mc...@apache.org on 2008/03/26 21:34:21 UTC

svn commit: r641556 - in /incubator/tuscany/java/sca/modules/implementation-osgi/src: main/java/org/apache/tuscany/sca/implementation/osgi/OSGiImplementationInterface.java test/java/org/apache/tuscany/sca/implementation/osgi/test/OSGiTestInterface.java

Author: mcombellack
Date: Wed Mar 26 13:34:19 2008
New Revision: 641556

URL: http://svn.apache.org/viewvc?rev=641556&view=rev
Log:
Removed redundant modifiers from methods on interface

Modified:
    incubator/tuscany/java/sca/modules/implementation-osgi/src/main/java/org/apache/tuscany/sca/implementation/osgi/OSGiImplementationInterface.java
    incubator/tuscany/java/sca/modules/implementation-osgi/src/test/java/org/apache/tuscany/sca/implementation/osgi/test/OSGiTestInterface.java

Modified: incubator/tuscany/java/sca/modules/implementation-osgi/src/main/java/org/apache/tuscany/sca/implementation/osgi/OSGiImplementationInterface.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/modules/implementation-osgi/src/main/java/org/apache/tuscany/sca/implementation/osgi/OSGiImplementationInterface.java?rev=641556&r1=641555&r2=641556&view=diff
==============================================================================
--- incubator/tuscany/java/sca/modules/implementation-osgi/src/main/java/org/apache/tuscany/sca/implementation/osgi/OSGiImplementationInterface.java (original)
+++ incubator/tuscany/java/sca/modules/implementation-osgi/src/main/java/org/apache/tuscany/sca/implementation/osgi/OSGiImplementationInterface.java Wed Mar 26 13:34:19 2008
@@ -25,20 +25,20 @@
 import org.apache.tuscany.sca.assembly.Implementation;
 
 /**
- * 
+ *
  * The model representing an OSGi implementation in an SCA assembly model.
  *
  */
 public interface OSGiImplementationInterface extends Implementation, Extensible {
-    
-    public String getBundleSymbolicName();
-    
-    public String getBundleVersion();
-    
-    public String[] getImports();
-    
-    public List<ComponentProperty> getReferenceProperties(String referenceName);
-    
-    public List<ComponentProperty> getServiceProperties(String serviceName);
+
+    String getBundleSymbolicName();
+
+    String getBundleVersion();
+
+    String[] getImports();
+
+    List<ComponentProperty> getReferenceProperties(String referenceName);
+
+    List<ComponentProperty> getServiceProperties(String serviceName);
 
 }

Modified: incubator/tuscany/java/sca/modules/implementation-osgi/src/test/java/org/apache/tuscany/sca/implementation/osgi/test/OSGiTestInterface.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/modules/implementation-osgi/src/test/java/org/apache/tuscany/sca/implementation/osgi/test/OSGiTestInterface.java?rev=641556&r1=641555&r2=641556&view=diff
==============================================================================
--- incubator/tuscany/java/sca/modules/implementation-osgi/src/test/java/org/apache/tuscany/sca/implementation/osgi/test/OSGiTestInterface.java (original)
+++ incubator/tuscany/java/sca/modules/implementation-osgi/src/test/java/org/apache/tuscany/sca/implementation/osgi/test/OSGiTestInterface.java Wed Mar 26 13:34:19 2008
@@ -20,12 +20,12 @@
 package org.apache.tuscany.sca.implementation.osgi.test;
 
 /**
- * 
+ *
  * Test class - Interface for an OSGi service
  *
  */
 public interface OSGiTestInterface {
-    
-    public String testService() throws Exception ;
+
+    String testService() throws Exception ;
 
 }



---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-commits-help@ws.apache.org