Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexandre Montplaisir2013-11-26 18:56:29 +0000
committerAlexandre Montplaisir2013-12-06 19:44:43 +0000
commit2e8c25d803dbb37f0578ae8d48093f5f3c7764f6 (patch)
tree61668d096ee3601ab49105ea8f6f33fcfd99f236 /lttng/org.eclipse.linuxtools.lttng2.ui
parentbe294fd7812a1aa653e50d3e053c89cc5d82f664 (diff)
downloadorg.eclipse.linuxtools-2e8c25d803dbb37f0578ae8d48093f5f3c7764f6.tar.gz
org.eclipse.linuxtools-2e8c25d803dbb37f0578ae8d48093f5f3c7764f6.tar.xz
org.eclipse.linuxtools-2e8c25d803dbb37f0578ae8d48093f5f3c7764f6.zip
tmf: Bring Java 7-specific errors back down to warnings
If we were to switch to Java 7 today, thousands of *errors* would show up because of the 1.7-specific project settings set to generate errors. Tone them down to warnings, until they are actually fixed. Change-Id: I65720d2e3ea3849d5450e2677e25710ff2833909 Signed-off-by: Alexandre Montplaisir <alexmonthy@voxpopuli.im> Reviewed-on: https://git.eclipse.org/r/18932
Diffstat (limited to 'lttng/org.eclipse.linuxtools.lttng2.ui')
-rw-r--r--lttng/org.eclipse.linuxtools.lttng2.ui/.settings/org.eclipse.jdt.core.prefs4
1 files changed, 2 insertions, 2 deletions
diff --git a/lttng/org.eclipse.linuxtools.lttng2.ui/.settings/org.eclipse.jdt.core.prefs b/lttng/org.eclipse.linuxtools.lttng2.ui/.settings/org.eclipse.jdt.core.prefs
index 8600a6a33c..3fafa2dd97 100644
--- a/lttng/org.eclipse.linuxtools.lttng2.ui/.settings/org.eclipse.jdt.core.prefs
+++ b/lttng/org.eclipse.linuxtools.lttng2.ui/.settings/org.eclipse.jdt.core.prefs
@@ -24,7 +24,7 @@ org.eclipse.jdt.core.compiler.problem.deprecationWhenOverridingDeprecatedMethod=
org.eclipse.jdt.core.compiler.problem.discouragedReference=error
org.eclipse.jdt.core.compiler.problem.emptyStatement=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
-org.eclipse.jdt.core.compiler.problem.explicitlyClosedAutoCloseable=error
+org.eclipse.jdt.core.compiler.problem.explicitlyClosedAutoCloseable=warning
org.eclipse.jdt.core.compiler.problem.fallthroughCase=error
org.eclipse.jdt.core.compiler.problem.fatalOptionalError=disabled
org.eclipse.jdt.core.compiler.problem.fieldHiding=error
@@ -75,7 +75,7 @@ org.eclipse.jdt.core.compiler.problem.potentiallyUnclosedCloseable=ignore
org.eclipse.jdt.core.compiler.problem.rawTypeReference=error
org.eclipse.jdt.core.compiler.problem.redundantNullAnnotation=warning
org.eclipse.jdt.core.compiler.problem.redundantNullCheck=error
-org.eclipse.jdt.core.compiler.problem.redundantSpecificationOfTypeArguments=error
+org.eclipse.jdt.core.compiler.problem.redundantSpecificationOfTypeArguments=warning
org.eclipse.jdt.core.compiler.problem.redundantSuperinterface=error
org.eclipse.jdt.core.compiler.problem.reportMethodCanBePotentiallyStatic=ignore
org.eclipse.jdt.core.compiler.problem.reportMethodCanBeStatic=error

Back to the top