Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Instrument Control
NomadCommandSystem
Commits
42b3cace
Commit
42b3cace
authored
Apr 17, 2020
by
ics
Browse files
fix bug
parent
534408fe
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/fr/ill/ics/util/ConfigManager.java
View file @
42b3cace
...
...
@@ -58,20 +58,20 @@ import fr.ill.ics.util.exception.PropertyNotFoundException;
*/
public
class
ConfigManager
{
private
static
final
Logger
LOGGER
=
Logger
.
getLogger
(
ConfigManager
.
class
.
getName
());
public
static
String
FILE_SEPARATOR
=
System
.
getProperty
(
"file.separator"
);
public
final
static
String
PROPERTIES_EXTENSION
=
".properties"
;
public
final
static
String
PROPERTIES_PATTERN
=
"Properties.xml"
;
public
final
static
String
VIEW_PATTERN
=
"View.xml"
;
public
final
static
String
COMMAND_VIEW_PATTERN
=
"CommandView.xml"
;
public
static
final
String
DEFAULT_LOCAL_FILES_DIRECTORY
=
".nomad"
;
public
static
final
String
NOMAD_CHAT_FILES
=
".nomadChats"
;
public
final
static
String
USER_HOME
=
System
.
getProperty
(
"user.home"
);
public
final
static
String
NOMAD_CLIENT_FILES
=
USER_HOME
;
private
static
final
Logger
LOGGER
=
Logger
.
getLogger
(
ConfigManager
.
class
.
getName
());
public
static
String
FILE_SEPARATOR
=
System
.
getProperty
(
"file.separator"
);
public
static
final
String
DEFAULT_LOCAL_FILES_DIRECTORY
=
USER_HOME
+
FILE_SEPARATOR
+
".nomad"
;
public
static
final
String
NOMAD_CHAT_FILES
=
".nomadChats"
;
public
final
static
String
CONF_DIRECTORY
=
"conf"
+
FILE_SEPARATOR
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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