Revert commit 6d31cb01b80d0560c0c083d40e641816877b3d06. Commit 6d31cb was an internal reorganization of google repository that should have resulted in no change. Due to a bug in our export process it deleted several files in third_party.
diff --git a/third_party/jformatstring/BUILD b/third_party/jformatstring/BUILD new file mode 100644 index 0000000..f3f1d35 --- /dev/null +++ b/third_party/jformatstring/BUILD
@@ -0,0 +1,20 @@ +package(default_visibility = ["//visibility:public"]) + +licenses(["restricted"]) # GNU GPL v2 with Classpath exception + +filegroup( + name = "srcs", + srcs = glob(["**"]), +) + +java_library( + name = "jformatstring", + srcs = glob(["java/**"]), +) + +load("//tools/build_rules:java_rules_skylark.bzl", "bootstrap_java_library") + +bootstrap_java_library( + name = "bootstrap", + srcs = glob(["java/**"]), +)