Skip to content

Instantly share code, notes, and snippets.

View josiahneuberger's full-sized avatar

Josiah Neuberger josiahneuberger

View GitHub Profile
@josiahneuberger
josiahneuberger / VolleyPatchFix
Last active August 29, 2015 14:20
Fixing Volley Request for Patch and PUT adding blank entry to JSON endpoints
/****
* Using Volley to PUT or PATCH a JSON endpoint creates an empty entry in your JSON:
*
* {
* "id": 7,
* "favorite": true,
* "": ""
* }
*
* The bug is in line 457 of Request.java in the Volley source: