i prefer this

This commit is contained in:
2022-05-19 13:59:16 -05:00
parent a775d258e9
commit 92c07f89fe
43 changed files with 285 additions and 277 deletions

View File

@ -74,11 +74,11 @@ public abstract class Container
{
if (entry.getValue() instanceof Table)
{
entry.setValue(((Table)entry.getValue()).consume());
entry.setValue(((Table) entry.getValue()).consume());
}
else if (entry.getValue() instanceof TableArray)
{
entry.setValue(((TableArray)entry.getValue()).getValues());
entry.setValue(((TableArray) entry.getValue()).getValues());
}
}
@ -110,7 +110,7 @@ public abstract class Container
@Override
void put(String key, Object value)
{
values.add((Table)value);
values.add((Table) value);
}
@Override