diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2023-04-27 02:07:23 +0200 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2023-04-27 02:08:05 +0200 |
commit | cdf35e8ead7a6a25290b7fce89007b08c6011924 (patch) | |
tree | e3d626e5742457946c01317fda03edddbdb17563 /tools/BUILD | |
parent | 76aa6f284095f76fb96169c44bb0a0abd2eb8e40 (diff) | |
parent | 9932f9b4156349252d3516a06298e3db708f4d5a (diff) | |
download | jgit-cdf35e8ead7a6a25290b7fce89007b08c6011924.tar.gz jgit-cdf35e8ead7a6a25290b7fce89007b08c6011924.zip |
Merge branch 'stable-6.2' into stable-6.3
* stable-6.2:
[bazel] Move ToolTestCase to src folder (6.2)
GcConcurrentTest: @Ignore flaky testInterruptGc
Fix CommitTemplateConfigTest
Fix after_open config and Snapshotting RefDir tests to work with bazel
[bazel] Skip ConfigTest#testCommitTemplatePathInHomeDirecory
Demote severity of some error prone bug patterns to warnings
UploadPack: Fix NPE when traversing a tag chain
Change-Id: I736c7d0ed9c6e9718fa98976c3dc5a25ab8cda85
Diffstat (limited to 'tools/BUILD')
-rw-r--r-- | tools/BUILD | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/BUILD b/tools/BUILD index a10901982f..1e671087d6 100644 --- a/tools/BUILD +++ b/tools/BUILD @@ -45,7 +45,7 @@ java_package_configuration( "-Xep:CannotMockFinalClass:ERROR", "-Xep:ClassCanBeStatic:ERROR", "-Xep:ClassNewInstance:ERROR", - "-Xep:DefaultCharset:ERROR", + "-Xep:DefaultCharset:WARN", "-Xep:DoubleCheckedLocking:ERROR", "-Xep:ElementsCountedInLoop:ERROR", "-Xep:EqualsHashCode:ERROR", @@ -55,7 +55,7 @@ java_package_configuration( "-Xep:FragmentInjection:ERROR", "-Xep:FragmentNotInstantiable:ERROR", "-Xep:FunctionalInterfaceClash:ERROR", - "-Xep:FutureReturnValueIgnored:ERROR", + "-Xep:FutureReturnValueIgnored:WARN", "-Xep:GetClassOnEnum:ERROR", "-Xep:ImmutableAnnotationChecker:ERROR", "-Xep:ImmutableEnumChecker:ERROR", @@ -89,7 +89,7 @@ java_package_configuration( "-Xep:TypeParameterShadowing:ERROR", "-Xep:TypeParameterUnusedInFormals:WARN", "-Xep:URLEqualsHashCode:ERROR", - "-Xep:UnusedException:ERROR", + "-Xep:UnusedException:WARN", "-Xep:UnsynchronizedOverridesSynchronized:ERROR", "-Xep:WaitNotInLoop:ERROR", ], |