Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey Shatunov committed Jan 27, 2014
1 parent 66beb85 commit 2b3653f
Showing 1 changed file with 3 additions and 7 deletions.
Expand Up @@ -201,13 +201,9 @@ public RemoveValueJSONManipulate(String key) {

@Override
public boolean onJSONManipulate(JSONObject object) {
if (object.has(key)) {
object.remove(key);
notifyOnChange(key);
return true;
} else {
return false;
}
object.remove(key);
notifyOnChange(key);
return true;
}
}

Expand Down

0 comments on commit 2b3653f

Please sign in to comment.