Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.equinox.http/src/org/eclipse/equinox/socket/https/HttpsServerSocket.java')
-rw-r--r--bundles/org.eclipse.equinox.http/src/org/eclipse/equinox/socket/https/HttpsServerSocket.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/bundles/org.eclipse.equinox.http/src/org/eclipse/equinox/socket/https/HttpsServerSocket.java b/bundles/org.eclipse.equinox.http/src/org/eclipse/equinox/socket/https/HttpsServerSocket.java
index 59501c388..3cc7e0c6d 100644
--- a/bundles/org.eclipse.equinox.http/src/org/eclipse/equinox/socket/https/HttpsServerSocket.java
+++ b/bundles/org.eclipse.equinox.http/src/org/eclipse/equinox/socket/https/HttpsServerSocket.java
@@ -137,6 +137,7 @@ public class HttpsServerSocket implements ServerSocketInterface, ServiceTrackerC
}
public void modifiedService(ServiceReference reference, Object service) {
+ // do nothing
}
public synchronized void removedService(ServiceReference reference, Object service) {
@@ -145,6 +146,7 @@ public class HttpsServerSocket implements ServerSocketInterface, ServiceTrackerC
try {
ss.close();
} catch (IOException e) {
+ // TODO: consider logging
}
ss = null;
}

Back to the top