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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]