Skip to content

Commit

Permalink
Added mapping for java.sql.Time
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Dekker committed Sep 29, 2016
1 parent 27525d4 commit 79b0f3f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/mcconverter/model/MCNativeType.java
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ public enum MCNativeType {
m.put(LocalTime.class, MCNativeType.LocalTime);
m.put(LocalDate.class, MCNativeType.LocalDate);
m.put(LocalDateTime.class, MCNativeType.LocalDateTime);
m.put(java.sql.Time.class, MCNativeType.LocalTime);
m.put(org.joda.time.DateTime.class, MCNativeType.DateTime);
m.put(org.joda.time.LocalTime.class, MCNativeType.LocalTime);
m.put(org.joda.time.LocalDate.class, MCNativeType.LocalDate);
Expand Down

0 comments on commit 79b0f3f

Please sign in to comment.