Remove unnecessary synchronized block + System.out
This commit is contained in:
parent
1a2e995104
commit
a12324c3a6
|
@ -127,7 +127,6 @@ public class TerminologyCache {
|
||||||
static {
|
static {
|
||||||
String cacheErrorsProperty = System.getProperty("cacheErrors");
|
String cacheErrorsProperty = System.getProperty("cacheErrors");
|
||||||
cacheErrors = cacheErrorsProperty != null ? "TRUE".equals(cacheErrorsProperty.toUpperCase(Locale.ROOT)) : false;
|
cacheErrors = cacheErrorsProperty != null ? "TRUE".equals(cacheErrorsProperty.toUpperCase(Locale.ROOT)) : false;
|
||||||
System.out.println();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// use lock from the context
|
// use lock from the context
|
||||||
|
@ -422,7 +421,6 @@ public class TerminologyCache {
|
||||||
}
|
}
|
||||||
|
|
||||||
private void load() throws FHIRException {
|
private void load() throws FHIRException {
|
||||||
synchronized (lock) {
|
|
||||||
for (String fn : new File(folder).list()) {
|
for (String fn : new File(folder).list()) {
|
||||||
if (fn.endsWith(".cache") && !fn.equals("validation.cache")) {
|
if (fn.endsWith(".cache") && !fn.equals("validation.cache")) {
|
||||||
int c = 0;
|
int c = 0;
|
||||||
|
@ -477,7 +475,6 @@ public class TerminologyCache {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
private String loadJS(JsonElement e) {
|
private String loadJS(JsonElement e) {
|
||||||
if (e == null)
|
if (e == null)
|
||||||
|
|
Loading…
Reference in New Issue