No effective change - code cleanup of BindableProperty to remove unused parameter (property name)

This commit is contained in:
rbygrave
2015-02-02 21:43:08 +13:00
parent f7e07633a1
commit bd99badb28
13 changed files with 24 additions and 19 deletions
@@ -1,5 +1,6 @@
package com.avaje.tests.model.types;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Version;
@@ -14,12 +15,16 @@ public class SomeNewTypesBean {
@Version
Long version;
@Column(name = "dow")
DayOfWeek dayOfWeek;
@Column(name = "mth")
Month month;
@Column(name = "yr")
Year year;
@Column(name = "yr_mth")
YearMonth yearMonth;
LocalDate localDate;