Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Instrument Control
NomadCommandSystem
Commits
0b422b3e
Commit
0b422b3e
authored
Jun 04, 2020
by
legoc
Browse files
Corrected blocking when exiting
parent
7f249de4
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/fr/ill/ics/nscclient/serverconnection/ServerConnection.java
View file @
0b422b3e
...
...
@@ -119,8 +119,10 @@ public class ServerConnection {
public
boolean
serverExists
()
{
serverInstance
=
ServerInstance
.
getInstance
().
getApplicationInstance
(
serverId
);
return
(
serverInstance
!=
null
&&
serverInstance
.
exists
());
if
(
serverInstance
==
null
)
{
serverInstance
=
ServerInstance
.
getInstance
().
getApplicationInstance
(
serverId
);
}
return
serverInstance
.
exists
();
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment