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:35:31 UTC

svn commit: r641558 - /incubator/tuscany/java/sca/modules/implementation-resource/src/main/java/org/apache/tuscany/sca/implementation/resource/ResourceImplementation.java

Author: mcombellack
Date: Wed Mar 26 13:35:29 2008
New Revision: 641558

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

Modified:
    incubator/tuscany/java/sca/modules/implementation-resource/src/main/java/org/apache/tuscany/sca/implementation/resource/ResourceImplementation.java

Modified: incubator/tuscany/java/sca/modules/implementation-resource/src/main/java/org/apache/tuscany/sca/implementation/resource/ResourceImplementation.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/modules/implementation-resource/src/main/java/org/apache/tuscany/sca/implementation/resource/ResourceImplementation.java?rev=641558&r1=641557&r2=641558&view=diff
==============================================================================
--- incubator/tuscany/java/sca/modules/implementation-resource/src/main/java/org/apache/tuscany/sca/implementation/resource/ResourceImplementation.java (original)
+++ incubator/tuscany/java/sca/modules/implementation-resource/src/main/java/org/apache/tuscany/sca/implementation/resource/ResourceImplementation.java Wed Mar 26 13:35:29 2008
@@ -29,27 +29,27 @@
 public interface ResourceImplementation extends Implementation {
 
     /**
-     * The URI of the resource inside its contribution. 
+     * The URI of the resource inside its contribution.
      * @return the URI of the resource
      */
-    public String getLocation();
+    String getLocation();
 
     /**
      * Sets the URI of the resource inside its contribution.
      * @param location the URI of the resource
      */
-    public void setLocation(String location);
+    void setLocation(String location);
 
     /**
      * Returns the URL of the resource.
      * @return the URL of the resource
      */
-    public URL getLocationURL();
-    
+    URL getLocationURL();
+
     /**
      * Sets the URL of the resource.
      * @param url the URL of the resource
      */
-    public void setLocationURL(URL url);
-    
+    void setLocationURL(URL url);
+
 }



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