Skip to content

Commit

Permalink
Automatic code cleanup.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 221301224
  • Loading branch information
meisterT authored and Copybara-Service committed Nov 13, 2018
1 parent a48c13a commit b57c2a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/build_rules/java_rules_skylark.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def java_library_impl(ctx):
neverlink_jars = ctx.files.neverlink_jars
compile_time_jars += jars + neverlink_jars
runtime_jars += jars
compile_time_jars_list = list(compile_time_jars) # TODO: This is weird.
compile_time_jars_list = compile_time_jars.to_list() # TODO: This is weird.

build_output = class_jar.path + ".build_output"
java_output = class_jar.path + ".build_java"
Expand Down

0 comments on commit b57c2a4

Please sign in to comment.