Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,6 @@ public OrphanFilesClean(FileStoreTable table, long olderThanMillis, boolean dryR

protected List<String> validBranches() {
List<String> branches = table.branchManager().branches();
branches.add(DEFAULT_MAIN_BRANCH);

List<String> abnormalBranches = new ArrayList<>();
for (String branch : branches) {
Expand All @@ -124,6 +123,7 @@ protected List<String> validBranches() {
+ "Please check these branches manually.",
abnormalBranches));
}
branches.add(DEFAULT_MAIN_BRANCH);
return branches;
}

Expand Down