Fix Javadoc warnings in SuggestService

These constants moved into the server package, which depends on this
package, so we can no longer import the necessary class for a @link.

Change-Id: I0695a991835a8d83db5b8f40def1e106babdc091
This commit is contained in:
Dave Borowitz
2013-12-05 09:51:58 -08:00
parent 8d2ab515cb
commit 86f08f504a

View File

@@ -14,7 +14,6 @@
package com.google.gerrit.common.data;
import com.google.gerrit.reviewdb.client.AccountGroup;
import com.google.gerrit.reviewdb.client.Change;
import com.google.gerrit.reviewdb.client.Project;
import com.google.gwtjsonrpc.common.AsyncCallback;
@@ -48,9 +47,9 @@ public interface SuggestService extends RemoteJsonService {
/**
* Suggests reviewers. A reviewer can be a user or a group. Inactive users,
* the system groups {@link AccountGroup#ANONYMOUS_USERS} and
* {@link AccountGroup#REGISTERED_USERS} and groups that have more than the
* configured {@code addReviewer.maxAllowed} members are not suggested as
* the system groups {@code SystemGroupBackend#ANONYMOUS_USERS} and
* {@code SystemGroupBackend#REGISTERED_USERS} and groups that have more than
* the configured {@code addReviewer.maxAllowed} members are not suggested as
* reviewers.
* @param changeId the change for which reviewers should be suggested
*/