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
aef132ea
Commit
aef132ea
authored
Aug 19, 2015
by
helene ortiz
Browse files
No commit message
No commit message
parent
03b32a55
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/fr/ill/ics/util/ConfigManager.java
View file @
aef132ea
...
...
@@ -379,6 +379,7 @@ public class ConfigManager {
propertyValue
=
propertyValue
.
replace
(
"~Omega"
,
SpecialCharacter
.
Omega
);
propertyValue
=
propertyValue
.
replace
(
"~degree"
,
SpecialCharacter
.
degree
);
propertyValue
=
propertyValue
.
replace
(
"~angstromminusone"
,
SpecialCharacter
.
angstromminusone
);
propertyValue
=
propertyValue
.
replace
(
"~angstromthree"
,
SpecialCharacter
.
angstromthree
);
propertyValue
=
propertyValue
.
replace
(
"~angstrom"
,
SpecialCharacter
.
angstrom
);
propertyValue
=
propertyValue
.
replace
(
"~superscriptminus"
,
SpecialCharacter
.
superscriptminus
);
propertyValue
=
propertyValue
.
replace
(
"~superscriptone"
,
SpecialCharacter
.
superscriptone
);
...
...
@@ -417,6 +418,7 @@ public class ConfigManager {
string
=
string
.
replace
(
"~Omega"
,
SpecialCharacter
.
Omega
);
string
=
string
.
replace
(
"~degree"
,
SpecialCharacter
.
degree
);
string
=
string
.
replace
(
"~angstromminusone"
,
SpecialCharacter
.
angstromminusone
);
string
=
string
.
replace
(
"~angstromthree"
,
SpecialCharacter
.
angstromthree
);
string
=
string
.
replace
(
"~angstrom"
,
SpecialCharacter
.
angstrom
);
string
=
string
.
replace
(
"~superscriptminus"
,
SpecialCharacter
.
superscriptminus
);
string
=
string
.
replace
(
"~superscriptone"
,
SpecialCharacter
.
superscriptone
);
...
...
src/fr/ill/ics/util/SpecialCharacter.java
View file @
aef132ea
...
...
@@ -57,6 +57,7 @@ public abstract class SpecialCharacter {
public
static
final
String
degree
=
"\u00B0"
;
//public static final String angstrom = "\u212B";
public
static
final
String
angstrom
=
"\u00C5"
;
public
static
final
String
angstromthree
=
"\u00C5\u00B3"
;
public
static
final
String
angstromminusone
=
"\u00C5\u207B\u00B9"
;
public
static
final
String
superscriptminus
=
"\u207B"
;
public
static
final
String
superscriptone
=
"\u00B9"
;
...
...
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