prefs work

This commit is contained in:
Manindra Moharana
2013-09-15 21:14:45 +05:30
parent 307051dfb0
commit 69405772a8
5 changed files with 51 additions and 20 deletions

View File

@@ -559,7 +559,7 @@ public class ErrorCheckerService implements Runnable{
}
// If warnings are disabled, skip 'em
if (p.isWarning() && !warningsEnabled) {
if (p.isWarning() && !ExperimentalMode.warningsEnabled) {
continue;
}
problemsList.add(p);
@@ -724,11 +724,6 @@ public class ErrorCheckerService implements Runnable{
@SuppressWarnings("rawtypes")
protected Map compilerSettings;
/**
* Enable/Disable warnings from being shown
*/
volatile public boolean warningsEnabled = true;
/**
* Sets compiler options for JDT Compiler
*/