v1.3.0: Overhauled entrance/exit logic to account for branches

This commit is contained in:
Evan Debenham
2022-05-20 13:50:27 -04:00
parent 5cc8734dc2
commit 654bce1f65
31 changed files with 494 additions and 226 deletions

View File

@@ -91,6 +91,10 @@ public class Bundle {
return !data.isNull( key );
}
public boolean remove( String key ){
return data.remove(key) != null;
}
//JSONObject.keyset() doesn't exist on Android/iOS
public ArrayList<String> getKeys(){
Iterator<String> keys = data.keys();