Merge changes Ie678a909,Ie5cd7f4e
* changes: Fix 'invalid member type qualification' Javadoc warnings FixReplacementInterpreter: Remove unused Comparator
This commit is contained in:
commit
9ec2bbccc3
@ -31,7 +31,6 @@ import com.google.inject.Inject;
|
||||
import com.google.inject.Singleton;
|
||||
import java.io.IOException;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Comparator;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import org.eclipse.jgit.lib.ObjectId;
|
||||
@ -41,9 +40,6 @@ import org.eclipse.jgit.lib.Repository;
|
||||
@Singleton
|
||||
public class FixReplacementInterpreter {
|
||||
|
||||
private static final Comparator<FixReplacement> ASC_RANGE_FIX_REPLACEMENT_COMPARATOR =
|
||||
Comparator.comparing(fixReplacement -> fixReplacement.range);
|
||||
|
||||
private final FileContentUtil fileContentUtil;
|
||||
|
||||
@Inject
|
||||
|
@ -75,7 +75,7 @@ public class StalenessChecker {
|
||||
|
||||
/**
|
||||
* Returns a {@link StalenessCheckResult} with structured information about staleness of the
|
||||
* provided {@link Change.Id}.
|
||||
* provided {@link com.google.gerrit.entities.Change.Id}.
|
||||
*/
|
||||
public StalenessCheckResult check(Change.Id id) {
|
||||
ChangeIndex i = indexes.getSearchIndex();
|
||||
|
@ -54,7 +54,7 @@ public class StalenessChecker {
|
||||
|
||||
/**
|
||||
* Returns a {@link StalenessCheckResult} with structured information about staleness of the
|
||||
* provided {@link Project.NameKey}.
|
||||
* provided {@link com.google.gerrit.entities.Project.NameKey}.
|
||||
*/
|
||||
public StalenessCheckResult check(Project.NameKey project) {
|
||||
ProjectData projectData = projectCache.get(project).toProjectData();
|
||||
|
Loading…
Reference in New Issue
Block a user