Commit 03837008 authored by Philip Makedonski's avatar Philip Makedonski
Browse files

* fallback nullscope when OCL breaks

parent 699729ea
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -25,7 +25,8 @@ public class TDLtxScopeProvider extends TDLScopeProvider {
			// catch and log the exception to avoid breaking the editor
			e.printStackTrace();
			Validator.reload();
			return super.getScope(context, reference);
//			return super.getScope(context, reference);
			return IScope.NULLSCOPE;
		}
	}