[hibernate-commits] Hibernate SVN: r15785 - annotations/branches/v3_2_1_GA_CP/src/test/org/hibernate/test/annotations/inheritance/joined.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Wed Jan 14 11:57:05 EST 2009


Author: jcosta at redhat.com
Date: 2009-01-14 11:57:05 -0500 (Wed, 14 Jan 2009)
New Revision: 15785

Modified:
   annotations/branches/v3_2_1_GA_CP/src/test/org/hibernate/test/annotations/inheritance/joined/File.java
Log:
JBPAPP-1069 - Changing the entity name to xfile, as File is a reserved keyword

Modified: annotations/branches/v3_2_1_GA_CP/src/test/org/hibernate/test/annotations/inheritance/joined/File.java
===================================================================
--- annotations/branches/v3_2_1_GA_CP/src/test/org/hibernate/test/annotations/inheritance/joined/File.java	2009-01-14 16:46:06 UTC (rev 15784)
+++ annotations/branches/v3_2_1_GA_CP/src/test/org/hibernate/test/annotations/inheritance/joined/File.java	2009-01-14 16:57:05 UTC (rev 15785)
@@ -10,7 +10,7 @@
 /**
  * @author Emmanuel Bernard
  */
- at Entity
+ at Entity(name="xfile")
 @Inheritance(strategy = InheritanceType.JOINED)
 public abstract class File {
 	@Id




More information about the hibernate-commits mailing list