all: fix lint errors (#5462)

This commit is contained in:
Jihun Cho 2019-03-11 10:52:12 -07:00 committed by GitHub
parent 4e289de5e6
commit b6d7f6e84f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 1 deletions

View File

@ -307,6 +307,8 @@ public abstract class NameResolver {
} }
/** /**
* Returns config if exists, otherwise null.
*
* @since 1.20.0 * @since 1.20.0
*/ */
@Nullable @Nullable
@ -315,6 +317,8 @@ public abstract class NameResolver {
} }
/** /**
* Returns error status if exists, otherwise null.
*
* @since 1.20.0 * @since 1.20.0
*/ */
@Nullable @Nullable

View File

@ -1391,7 +1391,6 @@ public class GrpclbLoadBalancerTest {
@Test @Test
public void grpclbFallback_noBalancerAddress() { public void grpclbFallback_noBalancerAddress() {
long loadReportIntervalMillis = 1983;
InOrder inOrder = inOrder(helper, subchannelPool); InOrder inOrder = inOrder(helper, subchannelPool);
// Create a resolution list with just backend addresses // Create a resolution list with just backend addresses

View File

@ -1,3 +1,5 @@
"""Build rule for java_grpc_library."""
load("@bazel_tools//tools/jdk:toolchain_utils.bzl", "find_java_runtime_toolchain", "find_java_toolchain") load("@bazel_tools//tools/jdk:toolchain_utils.bzl", "find_java_runtime_toolchain", "find_java_toolchain")
# "repository" here is for Bazel builds that span multiple WORKSPACES. # "repository" here is for Bazel builds that span multiple WORKSPACES.