From adf8da6beda96c214ab69fcab5ee4aa7a5a1bb17 Mon Sep 17 00:00:00 2001 From: Christian Beikov Date: Wed, 4 Aug 2021 13:52:16 +0200 Subject: [PATCH] Move annotations.fetch package --- .../org/hibernate/{ => orm}/test/annotations/fetch/Branch.java | 2 +- .../{ => orm}/test/annotations/fetch/FetchingTest.java | 2 +- .../org/hibernate/{ => orm}/test/annotations/fetch/Leaf.java | 2 +- .../org/hibernate/{ => orm}/test/annotations/fetch/Person.java | 2 +- .../org/hibernate/{ => orm}/test/annotations/fetch/Stay.java | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) rename hibernate-core/src/test/java/org/hibernate/{ => orm}/test/annotations/fetch/Branch.java (94%) rename hibernate-core/src/test/java/org/hibernate/{ => orm}/test/annotations/fetch/FetchingTest.java (98%) rename hibernate-core/src/test/java/org/hibernate/{ => orm}/test/annotations/fetch/Leaf.java (93%) rename hibernate-core/src/test/java/org/hibernate/{ => orm}/test/annotations/fetch/Person.java (98%) rename hibernate-core/src/test/java/org/hibernate/{ => orm}/test/annotations/fetch/Stay.java (98%) diff --git a/hibernate-core/src/test/java/org/hibernate/test/annotations/fetch/Branch.java b/hibernate-core/src/test/java/org/hibernate/orm/test/annotations/fetch/Branch.java similarity index 94% rename from hibernate-core/src/test/java/org/hibernate/test/annotations/fetch/Branch.java rename to hibernate-core/src/test/java/org/hibernate/orm/test/annotations/fetch/Branch.java index db6a2c1fba..cb886774aa 100644 --- a/hibernate-core/src/test/java/org/hibernate/test/annotations/fetch/Branch.java +++ b/hibernate-core/src/test/java/org/hibernate/orm/test/annotations/fetch/Branch.java @@ -6,7 +6,7 @@ */ //$Id$ -package org.hibernate.test.annotations.fetch; +package org.hibernate.orm.test.annotations.fetch; import java.util.HashSet; import java.util.Set; import javax.persistence.Entity; diff --git a/hibernate-core/src/test/java/org/hibernate/test/annotations/fetch/FetchingTest.java b/hibernate-core/src/test/java/org/hibernate/orm/test/annotations/fetch/FetchingTest.java similarity index 98% rename from hibernate-core/src/test/java/org/hibernate/test/annotations/fetch/FetchingTest.java rename to hibernate-core/src/test/java/org/hibernate/orm/test/annotations/fetch/FetchingTest.java index 57ab5b81fe..f241fe1c85 100644 --- a/hibernate-core/src/test/java/org/hibernate/test/annotations/fetch/FetchingTest.java +++ b/hibernate-core/src/test/java/org/hibernate/orm/test/annotations/fetch/FetchingTest.java @@ -4,7 +4,7 @@ * License: GNU Lesser General Public License (LGPL), version 2.1 or later. * See the lgpl.txt file in the root directory or . */ -package org.hibernate.test.annotations.fetch; +package org.hibernate.orm.test.annotations.fetch; import java.util.Date; diff --git a/hibernate-core/src/test/java/org/hibernate/test/annotations/fetch/Leaf.java b/hibernate-core/src/test/java/org/hibernate/orm/test/annotations/fetch/Leaf.java similarity index 93% rename from hibernate-core/src/test/java/org/hibernate/test/annotations/fetch/Leaf.java rename to hibernate-core/src/test/java/org/hibernate/orm/test/annotations/fetch/Leaf.java index 0b91c49fe9..29fdf51ca5 100644 --- a/hibernate-core/src/test/java/org/hibernate/test/annotations/fetch/Leaf.java +++ b/hibernate-core/src/test/java/org/hibernate/orm/test/annotations/fetch/Leaf.java @@ -6,7 +6,7 @@ */ //$Id$ -package org.hibernate.test.annotations.fetch; +package org.hibernate.orm.test.annotations.fetch; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; diff --git a/hibernate-core/src/test/java/org/hibernate/test/annotations/fetch/Person.java b/hibernate-core/src/test/java/org/hibernate/orm/test/annotations/fetch/Person.java similarity index 98% rename from hibernate-core/src/test/java/org/hibernate/test/annotations/fetch/Person.java rename to hibernate-core/src/test/java/org/hibernate/orm/test/annotations/fetch/Person.java index eae77face2..6a2e120aaf 100644 --- a/hibernate-core/src/test/java/org/hibernate/test/annotations/fetch/Person.java +++ b/hibernate-core/src/test/java/org/hibernate/orm/test/annotations/fetch/Person.java @@ -6,7 +6,7 @@ */ //$Id$ -package org.hibernate.test.annotations.fetch; +package org.hibernate.orm.test.annotations.fetch; import java.io.Serializable; import java.util.ArrayList; import java.util.Collection; diff --git a/hibernate-core/src/test/java/org/hibernate/test/annotations/fetch/Stay.java b/hibernate-core/src/test/java/org/hibernate/orm/test/annotations/fetch/Stay.java similarity index 98% rename from hibernate-core/src/test/java/org/hibernate/test/annotations/fetch/Stay.java rename to hibernate-core/src/test/java/org/hibernate/orm/test/annotations/fetch/Stay.java index 6e0632102d..317aeb5863 100644 --- a/hibernate-core/src/test/java/org/hibernate/test/annotations/fetch/Stay.java +++ b/hibernate-core/src/test/java/org/hibernate/orm/test/annotations/fetch/Stay.java @@ -6,7 +6,7 @@ */ //$Id$ -package org.hibernate.test.annotations.fetch; +package org.hibernate.orm.test.annotations.fetch; import java.io.Serializable; import java.util.Date; import javax.persistence.CascadeType;