ECS: Fix applied check in SourceMapping

This commit is contained in:
Jakub Valtar
2016-03-26 12:50:34 +01:00
parent 017e0fbae0
commit ac7c95a290

View File

@@ -225,7 +225,7 @@ public class SourceMapping {
private void checkApplied() {
if (applied) throw new RuntimeException("this mapping was not applied yet");
if (!applied) throw new RuntimeException("this mapping was not applied yet");
}