Commit 98f0d304 authored by Martti Käärik's avatar Martti Käärik
Browse files

Fix NPE re 670a09bf

Change-Id: I0f2771ca45abbb66c214d3edb6a722d608eab73d
parent 3c04f844
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -35,7 +35,7 @@ public class DataContextFinder implements IContextFinder {
			ISerializationContext context = SerializationContext.fromEObject(rule, semanticObject);
			return Collections.singleton(context);
		}
		return null;
		return Collections.emptySet();
	}

	@Override