private void getObfuscatedFontFromRelationship(String fontName, FontRel fontRel) { if (fontRel == null) { //log.debug("fontRel not found for '" + fontName + "'"); return; } String id = fontRel.getId(); String fontKey = fontRel.getFontKey(); ObfuscatedFontPart obfuscatedFont = (ObfuscatedFontPart)this.getRelationshipsPart().getPart(id); if (obfuscatedFont != null) { obfuscatedFont.deObfuscate(fontName, fontKey); } else { log.error("Couldn't find ObfuscatedFontPart with id: " + id); } }