private static CommitEditor buildDefaultCommitEditor() {
List<CommitEditor> editors = new ArrayList<CommitEditor>();
editors.add(new DefaultTypeEditor());
editors.add(new ValidatingEditor(createDefaultValidatorProvider()));
editors.add(new LuceneEditor());
return new CompositeEditor(editors);
}