Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.core.client/src/org/eclipse/osee/framework/core/client/internal/OseeApplicationServer.java')
-rw-r--r--plugins/org.eclipse.osee.framework.core.client/src/org/eclipse/osee/framework/core/client/internal/OseeApplicationServer.java13
1 files changed, 0 insertions, 13 deletions
diff --git a/plugins/org.eclipse.osee.framework.core.client/src/org/eclipse/osee/framework/core/client/internal/OseeApplicationServer.java b/plugins/org.eclipse.osee.framework.core.client/src/org/eclipse/osee/framework/core/client/internal/OseeApplicationServer.java
index 893e2cf142d..d0cc17474f6 100644
--- a/plugins/org.eclipse.osee.framework.core.client/src/org/eclipse/osee/framework/core/client/internal/OseeApplicationServer.java
+++ b/plugins/org.eclipse.osee.framework.core.client/src/org/eclipse/osee/framework/core/client/internal/OseeApplicationServer.java
@@ -34,12 +34,6 @@ public class OseeApplicationServer {
// private constructor
}
- public static void reset() {
- applicationServer.resetStatus();
-
- applicationServer.setServerInfo(null);
- }
-
public static String getOseeApplicationServer() throws OseeCoreException {
checkAndUpdateStatus();
String serverAddress = applicationServer.getServerAddress();
@@ -47,14 +41,8 @@ public class OseeApplicationServer {
return serverAddress;
}
- public static boolean isApplicationServerAlive() {
- checkAndUpdateStatus();
- return applicationServer.isAlive();
- }
-
private synchronized static void checkAndUpdateStatus() {
if (!applicationServer.isServerInfoValid()) {
- applicationServer.resetStatus();
OseeServerInfo serverInfo = null;
String appServerUri = OseeClientProperties.getOseeApplicationServer();
if (Strings.isValid(appServerUri)) {
@@ -69,7 +57,6 @@ public class OseeApplicationServer {
}
applicationServer.setServerInfo(serverInfo);
}
- applicationServer.checkAlive();
applicationServer.report();
}

Back to the top