This commit is contained in:
Anuken
2023-06-20 13:09:50 -04:00
parent 2008cf6387
commit a2dd2c88a2
6 changed files with 14 additions and 14 deletions

View File

@@ -34,7 +34,7 @@ public class LAssembler{
Seq<LStatement> st = read(data, privileged);
asm.instructions = st.map(l -> l.build(asm)).filter(l -> l != null).toArray(LInstruction.class);
asm.instructions = st.map(l -> l.build(asm)).retainAll(l -> l != null).toArray(LInstruction.class);
return asm;
}