Fix assert error

This commit is contained in:
2021-04-20 11:26:48 +02:00
parent d141d9032b
commit 31cdf33c33

View File

@@ -156,7 +156,7 @@ public class Parser {
} }
} }
} }
assert root == null; assert root != null;
return root; return root;
} }