Skip to content

Commit

Permalink
Remove test and fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
hvadehra committed Mar 29, 2023
1 parent d5f7847 commit 12dcb0b
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 79 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,10 @@ java_library(
name = "JavaTests_lib",
srcs = glob(["*.java"]),
deps = [
"//src/main/java/com/google/devtools/build/lib/analysis:actions/template_expansion_action",
"//src/main/java/com/google/devtools/build/lib/bazel/rules/java:bazel_java_semantics",
"//src/main/java/com/google/devtools/build/lib/packages",
"//src/main/java/com/google/devtools/build/lib/util:os",
"//src/main/java/com/google/devtools/build/lib/vfs:pathfragment",
"//src/test/java/com/google/devtools/build/lib/analysis/util",
"//src/test/java/com/google/devtools/build/lib/testutil:TestConstants",
"//third_party:guava",
"//third_party:junit4",
"//third_party:truth",
],
Expand Down

This file was deleted.

2 changes: 1 addition & 1 deletion tools/jdk/local_java_repository.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def _local_java_repository_impl(repository_ctx):
build_file = repository_ctx.read(repository_ctx.path(repository_ctx.attr.build_file))
else:
build_file = ""
build_file = build_file.replace("___RUNTIME_VERSION___" , version if version.isdigit() else "0")
build_file = build_file.replace("___RUNTIME_VERSION___", version if version.isdigit() else "0")

runtime_name = '"jdk"' if build_file else None
local_java_runtime_macro = """
Expand Down

0 comments on commit 12dcb0b

Please sign in to comment.