Skip to content

Commit

Permalink
cleanup: Remove license type comment; they're no longer required (baz…
Browse files Browse the repository at this point in the history
…elbuild#1078)

cleanup: Remove license type comment; they're no longer required

The `# License type` comments are no longer required. Removing it makes
it easier to import the source into Google.
  • Loading branch information
rickeylev authored Feb 23, 2023
1 parent f439695 commit b986547
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ load(":version.bzl", "BAZEL_VERSION")

package(default_visibility = ["//visibility:public"])

licenses(["notice"]) # Apache 2.0
licenses(["notice"])

exports_files([
"LICENSE",
Expand Down
2 changes: 1 addition & 1 deletion python/private/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
load("//python:versions.bzl", "print_toolchains_checksums")
load(":stamp.bzl", "stamp_build_setting")

licenses(["notice"]) # Apache 2.0
licenses(["notice"])

filegroup(
name = "distribution",
Expand Down
2 changes: 1 addition & 1 deletion tools/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ load("//python:defs.bzl", "py_binary")

package(default_visibility = ["//visibility:public"])

licenses(["notice"]) # Apache 2.0
licenses(["notice"])

# Implementation detail of py_wheel rule.
py_binary(
Expand Down

0 comments on commit b986547

Please sign in to comment.