https://issues.apache.org/bugzilla/show_bug.cgi?id=53458
Priority: P2
Bug ID: 53458
Assignee: [email protected]
Summary: simple bug in HyphenationTreeCache
Severity: normal
Classification: Unclassified
Reporter: [email protected]
Hardware: PC
Status: NEW
Version: all
Component: page-master/layout
Product: Fop
in method constructUserKey() i found this code near line 82:
if (hyphPatNames != null) {
String key = constructLlccKey(lang, country);
key.replace('_', '-'); <<<<<<<< ======= !!!!
userKey = (String) hyphPatNames.get(key);
}
return userKey;
it should be
key = key.replace('_', '-');
the code as it is now is without effect.
--
You are receiving this mail because:
You are the assignee for the bug.