diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-11-09 11:07:34 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-11-09 14:27:47 +0100 |
commit | eee1ff965143910eb52895af471b260564938db6 (patch) | |
tree | 4fb4a55b5b9a8e853cd3ed321a8d953e4b0df3a9 /solenv | |
parent | b4cbd33588c194c21926bf6ab70aa76088a9bb09 (diff) |
enable unchecked lint for our java code
and annotate where necessary, mostly just suppressing the warnings
Change-Id: I8e39d797cde6c7c3f4e3e1bd93a128965ecec81d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159205
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'solenv')
-rw-r--r-- | solenv/gbuild/JavaClassSet.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/solenv/gbuild/JavaClassSet.mk b/solenv/gbuild/JavaClassSet.mk index 087c79750d00..84fbcc13c32d 100644 --- a/solenv/gbuild/JavaClassSet.mk +++ b/solenv/gbuild/JavaClassSet.mk @@ -20,7 +20,8 @@ gb_JavaClassSet_JAVACCOMMAND = $(ICECREAM_RUN) $(JAVACOMPILER) $(JAVACFLAGS) \ -encoding utf8 \ --release $(1) \ - -Xlint:-options + -Xlint:-options \ + -Xlint:unchecked gb_JavaClassSet_JAVACDEBUG := |