mirror of
https://github.com/processing/processing4.git
synced 2026-02-14 02:45:36 +01:00
updated todo
This commit is contained in:
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user