Skip to content

Commit

Permalink
Merge pull request #18 from deiga/patch-1
Browse files Browse the repository at this point in the history
Add Custom objectMapper
  • Loading branch information
cowtowncoder committed Jun 8, 2013
2 parents 8c43113 + 910e431 commit 83cd348
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/main/java/com/fasterxml/jackson/datatype/joda/JodaMapper
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
com / fasterxml / jackson / datatype / joda;

import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.datatype.joda.JodaModule;

public class JodaMapper extends ObjectMapper {
public JodaMapper() {
registerModule(new JodaModule());
}
}

0 comments on commit 83cd348

Please sign in to comment.