Merge changes Ie678a909,Ie5cd7f4e

* changes:
  Fix 'invalid member type qualification' Javadoc warnings
  FixReplacementInterpreter: Remove unused Comparator
This commit is contained in:
David Pursehouse 2019-12-17 08:43:58 +00:00 committed by Gerrit Code Review
commit 9ec2bbccc3
3 changed files with 2 additions and 6 deletions

View File

@ -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

View File

@ -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();

View File

@ -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();