Skip to content

Commit

Permalink
Fixed bug in custom date transforms
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Dekker committed Sep 29, 2016
1 parent 79b0f3f commit 0aeafbb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ public String generatePropertyTransform(MCProperty property) {
case LocalTime:
case LocalDate:
case LocalDateTime:
transform = "DateFormatterTransform(format: \"" + customProperty.getTransform() + "\")";
transform = "DateFormatterTransform(format: \"" + customProperty.getTransform().getTransform() + "\")";
break;
default:
break;
Expand Down

0 comments on commit 0aeafbb

Please sign in to comment.