v1.3.0: added a separate bindings window for controller

This commit is contained in:
Evan Debenham
2022-06-03 12:33:17 -04:00
parent 833237eab8
commit 8653439a4f
6 changed files with 247 additions and 33 deletions

View File

@@ -88,7 +88,7 @@ public class Bundle {
}
public boolean contains( String key ) {
return !data.isNull( key );
return !isNull() && !data.isNull( key );
}
public boolean remove( String key ){