Skip to content

Commit

Permalink
fix formatting (git hook caused) change = 1 to = True in build files
Browse files Browse the repository at this point in the history
  • Loading branch information
Corbin Smith committed Nov 17, 2020
1 parent aedfcfd commit 33b4081
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .bazelignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Some examples have their own WORKSPACE. Ignore as part of this root WORKSPACE so
# we don't break trying to build separate workspaces using wildcards like //...
# examples/dagger doesn't have its own workspace, so don't do all of examples.
examples / android
examples / node
examples / trivial
examples / anvil
examples/android
examples/node
examples/trivial
examples/anvil
2 changes: 1 addition & 1 deletion examples/anvil/third_party/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ load("@io_bazel_rules_kotlin//kotlin:kotlin.bzl", "kt_compiler_plugin", "kt_jvm_

java_plugin(
name = "dagger_component_plugin",
generates_api = 1,
generates_api = True,
processor_class = "dagger.internal.codegen.ComponentProcessor",
visibility = ["//visibility:private"],
deps = [
Expand Down
2 changes: 1 addition & 1 deletion third_party/BUILD.release.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ exports_files([
java_import(
name = "android_sdk",
jars = ["@bazel_tools//tools/android:android_jar"],
neverlink = 1,
neverlink = True,
visibility = ["//visibility:public"],
)

0 comments on commit 33b4081

Please sign in to comment.