From f0a5d7b21989f16eee31906cf398c717cc3dbe3f Mon Sep 17 00:00:00 2001 From: Chris Cromer Date: Sun, 6 Oct 2019 00:09:58 -0300 Subject: [PATCH] Suppress false positive inspections Signed-off-by: Chris Cromer --- build.gradle | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build.gradle b/build.gradle index 6831dc3..3bdd1ae 100644 --- a/build.gradle +++ b/build.gradle @@ -21,7 +21,10 @@ plugins { group 'cl.cromer.azaraka' version '1.0.0' +// These are used, so ignore the inspections +//noinspection GroovyUnusedAssignment sourceCompatibility = 1.8 +//noinspection GroovyUnusedAssignment targetCompatibility = 1.8 mainClassName = "cl.cromer.azaraka.Main"