mirror of
https://github.com/processing/processing4.git
synced 2026-02-12 18:10:43 +01:00
probably nicked something elsewhere, so for now.
This commit is contained in:
@@ -341,7 +341,8 @@ public class ErrorCheckerService implements Runnable{
|
||||
problemsList = new ArrayList<Problem>();
|
||||
for (int i = 0; i < problems.length; i++) {
|
||||
int a[] = calculateTabIndexAndLineNumber(problems[i]);
|
||||
Problem p = new Problem(problems[i], a[0], a[1]);
|
||||
Problem p = new Problem(problems[i], a[0], a[1] + 1);
|
||||
//TODO: ^Why do cheeky stuff?
|
||||
problemsList.add(p);
|
||||
// System.out.println(p.toString());
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user