diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2023-04-27 02:30:20 +0200 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2023-04-27 02:30:20 +0200 |
commit | 34a81889b8d8a6e84ffaf86deca8eb15bfb250ab (patch) | |
tree | 6ed312f660d52ddc3a02fec2bab9dda734b1704e /tools/BUILD | |
parent | 032eef5b12a25e0da48004eea589966ae0652433 (diff) | |
parent | f87c456e8ac1fa341f1c3a618798738245bf8adb (diff) | |
download | jgit-34a81889b8d8a6e84ffaf86deca8eb15bfb250ab.tar.gz jgit-34a81889b8d8a6e84ffaf86deca8eb15bfb250ab.zip |
Merge branch 'stable-6.4' into stable-6.5
* stable-6.4:
[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: I6d20fea3a417e4361b61e81756253343668eb5de
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", ], |