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…
Reference in New Issue