in src/main/java/org/apache/creadur/tentacles/Licenses.java [50:60]
private String normalize(String text) {
for (final Map.Entry<String, String> license : this.licenses.entrySet()) {
text =
text.replace(
license.getValue(),
String.format("---[%s - full text]---\n\n",
license.getKey()));
}
text = text.intern();
return text;
}