-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 
Author Message
 Post subject: bug in org.hibernate.type.EntityType
PostPosted: Mon Apr 12, 2010 3:11 pm 
Newbie

Joined: Mon Apr 12, 2010 2:58 pm
Posts: 1
Sorry if you guys already know about this.. but I just started using Hibernate and thought I was going mad for a while.

Latest version 3.5.0-final.

org.hibernate.type.EntityType.isEqual(Object,Object,EntityMode,SessionFactoryImplementor)
line 353 in my source

Spot the x below
Code:
      Serializable yid;
      if (y instanceof HibernateProxy) {
         yid = ( (HibernateProxy) y ).getHibernateLazyInitializer()
               .getIdentifier();
      }
      else {
         if ( mappedClass.isAssignableFrom( y.getClass() ) ) {
            yid = persister.getIdentifier(x, entityMode);
         }
         else {
            //JPA 2 case where @IdClass contains the id and not the associated entity
            yid = (Serializable) y;
         }
      }


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.