Use com.google.inject instead of javax.inject

Several imports from javax.inject seem to have crept into the code
base. Replace them with the com.google.inject equivalents.

Change-Id: I02739faf165a0c557aee0f741dbe6504fdfa6433
This commit is contained in:
David Pursehouse
2018-11-20 13:54:23 +09:00
parent 562b166f6d
commit e42b76d4ba
8 changed files with 11 additions and 11 deletions

View File

@@ -31,6 +31,7 @@ import com.google.gerrit.reviewdb.client.RefNames;
import com.google.gerrit.server.config.AllUsersName;
import com.google.gerrit.server.group.InternalGroup;
import com.google.inject.Inject;
import com.google.inject.Singleton;
import java.io.IOException;
import java.nio.charset.StandardCharsets;
import java.util.ArrayList;
@@ -39,7 +40,6 @@ import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.inject.Singleton;
import org.eclipse.jgit.errors.ConfigInvalidException;
import org.eclipse.jgit.lib.ObjectId;
import org.eclipse.jgit.lib.ObjectLoader;