Skip to content

Commit

Permalink
Test CL for copybara
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 584657401
  • Loading branch information
Googler authored and copybara-github committed Nov 22, 2023
1 parent e34ed6b commit 2fb45a0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -744,3 +744,10 @@ compat_repositories()

# Register custom java 17 toolchain
register_toolchains("//:custom_java_17_toolchain_definition")

# abseil
http_archive(
name = "com_google_absl",
urls = ["https://github.com/abseil/abseil-cpp/archive/98eb410c93ad059f9bba1bf43f5bb916fc92a5ea.zip"],
strip_prefix = "abseil-cpp-98eb410c93ad059f9bba1bf43f5bb916fc92a5ea",
)
2 changes: 1 addition & 1 deletion base/src/com/google/idea/blaze/base/qsync/QuerySync.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import com.intellij.openapi.project.Project;
import java.util.function.Supplier;

/** Holder class for basic information about querysync, e.g. is it enabled? */
/** Holder class for basic information about querysync, e.g. is it enabled? Test comment. */
public class QuerySync {

private static final FeatureRolloutExperiment ENABLED =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ cc_library(
srcs = ["TestClass.cc"],
hdrs = ["TestClass.h"],
visibility = ["//querysync/javatests/com/google/idea/blaze/qsync/testdata:__subpackages__"],
deps = ["//third_party/absl/strings"],
deps = ["@com_google_absl//absl/strings"],
)

0 comments on commit 2fb45a0

Please sign in to comment.