diff options
author | Bananeweizen <bananeweizen@gmx.de> | 2014-03-25 20:56:39 +0100 |
---|---|---|
committer | Bananeweizen <bananeweizen@gmx.de> | 2014-03-25 20:56:39 +0100 |
commit | 32dd0bd0cf67b9681cd016d26efa4cee6821e0aa (patch) | |
tree | e705de31c3c3c49af1cfafadc2e02b6a6297c71c /tests | |
parent | f7674389fdf12f28efd9eb611c0e4517294e78c5 (diff) | |
download | cgeo-32dd0bd0cf67b9681cd016d26efa4cee6821e0aa.zip cgeo-32dd0bd0cf67b9681cd016d26efa4cee6821e0aa.tar.gz cgeo-32dd0bd0cf67b9681cd016d26efa4cee6821e0aa.tar.bz2 |
reduce null analysis warnings
This change allows unchecked conversion from non annotated expressions
to nonnull expressions. Those are needed whenever we call a framework
method (where we cannot add annotations ourselfes) and cause more
warnings in Eclipse than they actually help.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/.settings/org.eclipse.jdt.core.prefs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/.settings/org.eclipse.jdt.core.prefs b/tests/.settings/org.eclipse.jdt.core.prefs index 6ba1bbd..fd37b9b 100644 --- a/tests/.settings/org.eclipse.jdt.core.prefs +++ b/tests/.settings/org.eclipse.jdt.core.prefs @@ -52,7 +52,7 @@ org.eclipse.jdt.core.compiler.problem.nonnullParameterAnnotationDropped=warning org.eclipse.jdt.core.compiler.problem.nullAnnotationInferenceConflict=error org.eclipse.jdt.core.compiler.problem.nullReference=error org.eclipse.jdt.core.compiler.problem.nullSpecViolation=error -org.eclipse.jdt.core.compiler.problem.nullUncheckedConversion=warning +org.eclipse.jdt.core.compiler.problem.nullUncheckedConversion=ignore org.eclipse.jdt.core.compiler.problem.overridingPackageDefaultMethod=warning org.eclipse.jdt.core.compiler.problem.parameterAssignment=warning org.eclipse.jdt.core.compiler.problem.possibleAccidentalBooleanAssignment=warning |