mirror of
https://github.com/processing/processing4.git
synced 2026-02-13 10:30:44 +01:00
added manual error check function to ECS
This commit is contained in:
@@ -260,7 +260,15 @@ public class ErrorCheckerService implements Runnable{
|
||||
}
|
||||
|
||||
protected ASTGenerator astGenerator;
|
||||
AtomicInteger textModified = new AtomicInteger();
|
||||
private AtomicInteger textModified = new AtomicInteger();
|
||||
|
||||
/**
|
||||
* Triggers error check
|
||||
*/
|
||||
public void runManualErrorCheck() {
|
||||
textModified.incrementAndGet();
|
||||
}
|
||||
|
||||
private boolean checkCode() {
|
||||
System.out.println("checkCode() " + textModified.get() );
|
||||
lastTimeStamp = System.currentTimeMillis();
|
||||
|
||||
Reference in New Issue
Block a user