public void pushEventGoodUnequipped(String message) {
try {
JSONObject eventJSON = new JSONObject(message);
BusProvider.getInstance().post(new GoodUnEquippedEvent(eventJSON.getString("itemId"), this));
} catch (JSONException e) {
SoomlaUtils.LogError(TAG, "(when pushing event) This is BAD! couldn't create JSON for onGoodUnequipped event.");
}
}