Bazel: Remove unused glob function

Buildifier ran in warn mode flagged unused glob function:

constant-glob: Glob pattern "ReceivePackRefCache.java" has no wildcard
('*'). Constant patterns can be error-prone, move the file outside the
glob.

Change-Id: If0fd632b145c8bf48b92095250e6f71b33a7df59
This commit is contained in:
David Ostrovsky
2020-01-14 21:48:32 +01:00
parent 26f8b37e7c
commit b6a9f05889

View File

@@ -34,7 +34,7 @@ java_library(
java_library(
name = "ref_cache",
srcs = glob(["ReceivePackRefCache.java"]),
srcs = ["ReceivePackRefCache.java"],
visibility = ["//visibility:public"],
deps = [
"//java/com/google/gerrit/entities",