updated todo

This commit is contained in:
Manindra Moharana
2013-08-19 22:07:47 +05:30
parent acbba41984
commit 0a2f2662cf
2 changed files with 12 additions and 1 deletions

View File

@@ -362,12 +362,22 @@ public class ErrorCheckerService implements Runnable{
return false;
}
private AtomicBoolean syntaxErrors;
protected AtomicBoolean syntaxErrors;
public boolean hasSyntaxErrors(){
return syntaxErrors.get();
}
public boolean hasErrors(){
synchronized (problemsList) {
for (Problem p : problemsList) {
if (p.isError())
return false;
}
return false;
}
}
protected TreeMap<String, IProblem> tempErrorLog;
private void syntaxCheck() {