grpclb: fix lint warnings (#6670)

This commit is contained in:
Chengyuan Zhang 2020-02-03 10:34:30 -08:00 committed by GitHub
parent 295b64b5ff
commit e0ee52cc22
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -26,16 +26,16 @@ import java.util.List;
* team. If you *really* think you need to use this, contact the gRPC team first.
*/
@Internal
public class InternalGrpclbConstantsAccessor {
public final class InternalGrpclbConstantsAccessor {
// Prevent instantiation.
private InternalGrpclbConstantsAccessor() {
}
public static Attributes.Key<List<EquivalentAddressGroup>> ATTR_LB_ADDRS =
public static final Attributes.Key<List<EquivalentAddressGroup>> ATTR_LB_ADDRS =
GrpclbConstants.ATTR_LB_ADDRS;
@EquivalentAddressGroup.Attr
public static Attributes.Key<String> ATTR_LB_ADDR_AUTHORITY =
public static final Attributes.Key<String> ATTR_LB_ADDR_AUTHORITY =
GrpclbConstants.ATTR_LB_ADDR_AUTHORITY;
}