Skip to content

Commit

Permalink
Fix formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
Corbin Smith committed Nov 16, 2020
1 parent 430dace commit e118144
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 9 deletions.
6 changes: 3 additions & 3 deletions examples/android/WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ maven_install(
"androidx.test.espresso:espresso-core:3.1.1",
"org.hamcrest:hamcrest-library:1.3",
"org.jetbrains.kotlinx:kotlinx-serialization-runtime:1.0-M1-1.4.0-rc",
"com.google.dagger:dagger:2.28",
"com.google.dagger:dagger-compiler:2.28",
"com.google.dagger:dagger-producers:2.28",
"com.google.dagger:dagger:2.28",
"com.google.dagger:dagger-compiler:2.28",
"com.google.dagger:dagger-producers:2.28",
],
repositories = [
"https://jcenter.bintray.com/",
Expand Down
2 changes: 1 addition & 1 deletion examples/android/third_party/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
java_plugin(
name = "dagger_component_plugin",
generates_api = 1,
generates_api = True,
processor_class = "dagger.internal.codegen.ComponentProcessor",
visibility = ["//visibility:private"],
deps = [
Expand Down
1 change: 1 addition & 0 deletions examples/plugin/src/serialization/empty.kt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

package plugin.serialization

// Exists to satisfy the "must have a source file" for kt_jvm_library, which will go away eventually
4 changes: 2 additions & 2 deletions kotlin/internal/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ load("@bazel_skylib//:bzl_library.bzl", "bzl_library")

kt_kotlinc_options(
name = "default_kotlinc_options",
# Used internally as the rule default. This should be
# Used internally as the rule default. This should be
# considered an implementation detail and not used externally
visibility = ["//visibility:public"],
)

kt_javac_options(
name = "default_javac_options",
# Used internally as the rule default. This should be
# Used internally as the rule default. This should be
# considered an implementation detail and not used externally
visibility = ["//visibility:public"],
)
Expand Down
4 changes: 2 additions & 2 deletions kotlin/kotlin.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@ load(
load(
"//kotlin:rules.bzl",
_define_kt_toolchain = "define_kt_toolchain",
_kt_kotlinc_options = "kt_kotlinc_options",
_kt_javac_options = "kt_javac_options",
_kt_android_library = "kt_android_library",
_kt_compiler_plugin = "kt_compiler_plugin",
_kt_javac_options = "kt_javac_options",
_kt_js_import = "kt_js_import",
_kt_js_library = "kt_js_library",
_kt_jvm_binary = "kt_jvm_binary",
_kt_jvm_import = "kt_jvm_import",
_kt_jvm_library = "kt_jvm_library",
_kt_jvm_test = "kt_jvm_test",
_kt_kotlinc_options = "kt_kotlinc_options",
_kt_register_toolchains = "kt_register_toolchains",
)

Expand Down
2 changes: 1 addition & 1 deletion kotlin/rules.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ load(
)
load(
"//kotlin/internal:opts.bzl",
_kt_kotlinc_options = "kt_kotlinc_options",
_kt_javac_options = "kt_javac_options",
_kt_kotlinc_options = "kt_kotlinc_options",
)
load(
"//kotlin/internal/jvm:jvm.bzl",
Expand Down

0 comments on commit e118144

Please sign in to comment.