v1.3.0: Overhauled entrance/exit logic to account for branches
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user