@Override public boolean accept(HistoryEntry entry) { if (entry.getVersionId().endsWith("/0")) return false; if (entry.getVersionId().endsWith("\\0")) return false; if (entry.getEvent().equalsIgnoreCase("create branch")) return false; return true; }
@Override public boolean accept(HistoryEntry entry) { if (DESTROYED_SUB_BRANCH_PATTERN.matcher(entry.getEvent()).matches()) return false; return true; }
@Override public boolean accept(HistoryEntry entry) { return accept(entry.getElement()); }