Skip to content

Commit

Permalink
grpclb: fix lint warnings (#6670)
Browse files Browse the repository at this point in the history
  • Loading branch information
voidzcy committed Feb 3, 2020
1 parent 295b64b commit e0ee52c
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -26,16 +26,16 @@
* 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;
}

0 comments on commit e0ee52c

Please sign in to comment.