Skip to content

Commit

Permalink
Backfix a fix needed by XML module
Browse files Browse the repository at this point in the history
  • Loading branch information
tatu-at-salesforce committed Jan 28, 2014
1 parent bf42522 commit a151fc0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ public JsonDeserializer<?> replaceDelegatee(JsonDeserializer<?> delegatee)
public Collection<Object> getKnownPropertyNames() { return _delegatee.getKnownPropertyNames(); }

@Override
public boolean isCachable() { return false; }
public boolean isCachable() { return _delegatee.isCachable(); }

@Override
public ObjectIdReader getObjectIdReader() { return _delegatee.getObjectIdReader(); }
Expand Down

0 comments on commit a151fc0

Please sign in to comment.