HHH-14216 Add new lines to the end of new files.

This commit is contained in:
David Ellingsworth 2020-11-03 16:50:10 -05:00 committed by Steve Ebersole
parent 24035d7f2c
commit 1c6e2b4efb
8 changed files with 8 additions and 8 deletions

View File

@ -30,4 +30,4 @@
<many-to-one name="person" class="PersonByRef" column="personId" unique="true"/>
<property name="data"/>
</class>
</hibernate-mapping>
</hibernate-mapping>

View File

@ -35,4 +35,4 @@ public abstract class Details implements Serializable {
protected void setPerson(Person person) {
this.person = person;
}
}
}

View File

@ -6,4 +6,4 @@
*/
package org.hibernate.test.onetoone.cache;
public class DetailsByFK extends Details {}
public class DetailsByFK extends Details {}

View File

@ -6,4 +6,4 @@
*/
package org.hibernate.test.onetoone.cache;
public class DetailsByRef extends Details {}
public class DetailsByRef extends Details {}

View File

@ -27,4 +27,4 @@
<property name="name"/>
<one-to-one name="details" class="DetailsByRef" property-ref="person" fetch="join" cascade="all"/>
</class>
</hibernate-mapping>
</hibernate-mapping>

View File

@ -40,4 +40,4 @@ public abstract class Person implements Serializable {
public void setName(String name) {
this.name = name;
}
}
}

View File

@ -6,4 +6,4 @@
*/
package org.hibernate.test.onetoone.cache;
public class PersonByFK extends Person {}
public class PersonByFK extends Person {}

View File

@ -6,4 +6,4 @@
*/
package org.hibernate.test.onetoone.cache;
public class PersonByRef extends Person {}
public class PersonByRef extends Person {}