GroupsNoteDbConsistencyChecker: remove empty constructor

Change-Id: If077e854350c8a4523f7c2e309d08aa2f1ed1c32
This commit is contained in:
Changcheng Xiao
2017-11-28 13:53:51 +01:00
parent 12c22ea825
commit 4023766205

View File

@@ -31,7 +31,6 @@ import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import javax.inject.Inject;
import javax.inject.Singleton;
import org.eclipse.jgit.errors.ConfigInvalidException;
import org.eclipse.jgit.lib.ObjectId;
@@ -56,9 +55,6 @@ public class GroupsNoteDbConsistencyChecker {
@Nullable public Map<AccountGroup.UUID, InternalGroup> uuidToGroupMap;
}
@Inject
GroupsNoteDbConsistencyChecker() {}
/** Checks for problems with the given All-Users repo. */
public Result check(Repository repo) throws IOException {
Result r = doCheck(repo);