Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2020-02-05 17:59:29 +0000
committerThomas Watson2020-02-05 18:00:25 +0000
commit53cda2fec39d3a012525051b96af1155c9c7f07b (patch)
tree7f2e9ca25a982f389186150151df6b81ab5f568b /bundles/org.eclipse.osgi/osgi/src
parent12b32a9c577e8102eae1242d9bac2104b5cbf244 (diff)
downloadrt.equinox.framework-53cda2fec39d3a012525051b96af1155c9c7f07b.tar.gz
rt.equinox.framework-53cda2fec39d3a012525051b96af1155c9c7f07b.tar.xz
rt.equinox.framework-53cda2fec39d3a012525051b96af1155c9c7f07b.zip
Update connect api to remove return this
The API is not really a good candidate for chaining and the return of this makes it awkward. Change-Id: Iad1bcb1cd347f5887817d3e62a0d78d398631421 Signed-off-by: Thomas Watson <tjwatson@us.ibm.com>
Diffstat (limited to 'bundles/org.eclipse.osgi/osgi/src')
-rw-r--r--bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/connect/ConnectContent.java6
-rw-r--r--bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/connect/ModuleConnector.java3
2 files changed, 3 insertions, 6 deletions
diff --git a/bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/connect/ConnectContent.java b/bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/connect/ConnectContent.java
index 56c1ddbed..44ec66031 100644
--- a/bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/connect/ConnectContent.java
+++ b/bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/connect/ConnectContent.java
@@ -110,18 +110,16 @@ public interface ConnectContent {
* until right before requests to access the bundle revision content are
* made.
*
- * @return a reference to this object
* @throws IOException if an error occurred opening the content
*/
- ConnectContent open() throws IOException;
+ void open() throws IOException;
/**
* Closes this connect content.
*
- * @return a reference to this object
* @throws IOException if an error occurred closing the connect content
*/
- ConnectContent close() throws IOException;
+ void close() throws IOException;
/**
* Represents the entry of a connect module
diff --git a/bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/connect/ModuleConnector.java b/bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/connect/ModuleConnector.java
index 3a5ec012d..3f9a112c5 100644
--- a/bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/connect/ModuleConnector.java
+++ b/bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/connect/ModuleConnector.java
@@ -57,9 +57,8 @@ public interface ModuleConnector {
* @param storage the persistent storage area used by the {@link Framework}
* or {@code null} if the platform does not have file system
* support.
- * @return a reference to this object
*/
- ModuleConnector initialize(File storage, Map<String,String> configuration);
+ void initialize(File storage, Map<String,String> configuration);
/**
* Connects a bundle location with a {@link ConnectModule}. If an

Back to the top