public void initUserConfig() throws ConfigurationException {
log.debug("Initializing User Agent Configuration");
setFontBaseURL(getBaseURLfromConfig(userConfig, "font-base"));
final String hyphBase = getBaseURLfromConfig(userConfig, "hyphenation-base");
if (hyphBase != null) {
this.hyphResolver = new HyphenationTreeResolver() {
public Source resolve(String href) {
return resolveURI(href, hyphBase);
}
};
}