mirror of
https://github.com/hapifhir/org.hl7.fhir.core.git
synced 2025-02-09 14:24:44 +00:00
fix problem with whitespace in terminology caching
This commit is contained in:
parent
6950dba75b
commit
24d67798d6
@ -695,9 +695,9 @@ public class TerminologyCache {
|
||||
}
|
||||
|
||||
protected String hashJson(String s) {
|
||||
s = StringUtils.remove(s, ' ');
|
||||
s = StringUtils.remove(s, '\n');
|
||||
s = StringUtils.remove(s, '\r');
|
||||
// s = StringUtils.remove(s, ' ');
|
||||
// s = StringUtils.remove(s, '\n');
|
||||
// s = StringUtils.remove(s, '\r');
|
||||
return String.valueOf(s.hashCode());
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user