Commit 8b56681f authored by Philip Makedonski's avatar Philip Makedonski
Browse files

+ fix for concurrent modification problem

parent d6f2202e
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -1021,7 +1021,10 @@ class CodeStyleValidator extends AbstractDeclarativeValidator {
						nextLevelCheck = nlc
					}
				} else if (o.eIsProxy) {
					nextLevelCheck.remove(o);
					var ArrayList<TTCN3Reference> nlc = new ArrayList<TTCN3Reference>()
					nlc.addAll(nextLevelCheck)
					nlc.remove(o)
					nextLevelCheck = nlc
				}
			}
		} while (nextLevelCheck != null && !nextLevelCheck.empty)