in src/main/java/com/criteo/gerrit/plugins/automerge/PluginComment.java [42:51]
String getContent() {
if (templatePath.exists()) {
try {
return Files.asCharSource(templatePath, Charsets.UTF_8).read();
} catch (final IOException exc) {
log.error("Not able to read " + templatePath, exc);
}
}
return defaultMessage;
}