[hibernate-commits] Hibernate SVN: r19529 - core/trunk/annotations/src/test/java/org/hibernate/test/annotations/fetchprofile.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Mon May 17 10:29:28 EDT 2010


Author: epbernard
Date: 2010-05-17 10:29:28 -0400 (Mon, 17 May 2010)
New Revision: 19529

Modified:
   core/trunk/annotations/src/test/java/org/hibernate/test/annotations/fetchprofile/Customer.java
Log:
HHH-5149 documentation for versioning

Modified: core/trunk/annotations/src/test/java/org/hibernate/test/annotations/fetchprofile/Customer.java
===================================================================
--- core/trunk/annotations/src/test/java/org/hibernate/test/annotations/fetchprofile/Customer.java	2010-05-17 14:28:55 UTC (rev 19528)
+++ core/trunk/annotations/src/test/java/org/hibernate/test/annotations/fetchprofile/Customer.java	2010-05-17 14:29:28 UTC (rev 19529)
@@ -49,8 +49,6 @@
 		@FetchProfile(name = "customer-with-orders-and-country",
 				fetchOverrides = {
 			@FetchProfile.FetchOverride(entity = Customer.class, association = "orders", mode = FetchMode.JOIN),
-			//The following does not work
-			//@FetchProfile.FetchOverride(entity = Customer.class, association = "orders.country", mode = FetchMode.JOIN),
 			@FetchProfile.FetchOverride(entity = Customer.class, association = "lastOrder", mode = FetchMode.JOIN)
 		})
 })



More information about the hibernate-commits mailing list