Amend an out of date javadoc comment referring to CGLIB

This commit is contained in:
Sanne Grinovero 2018-04-16 14:13:12 +01:00
parent 2461301467
commit cf2c6235fd
2 changed files with 3 additions and 3 deletions

View File

@ -10,8 +10,8 @@ import org.hibernate.internal.util.StringHelper;
/**
* A problem occurred accessing a property of an instance of a
* persistent class by reflection, or via CGLIB. There are a
* number of possible underlying causes, including
* persistent class by reflection, or via enhanced entities.
* There are a number of possible underlying causes, including
* <ul>
* <li>failure of a security check
* <li>an exception occurring inside the getter or setter method

View File

@ -15,7 +15,7 @@ import org.hibernate.service.ServiceRegistry;
/**
* An interface for factories of {@link ProxyFactory proxy factory} instances.
* <p/>
* Currently used to abstract from the tupizer whether we are using CGLIB or
* Currently used to abstract from the tupizer whether we are using Byte Buddy or
* Javassist for lazy proxy generation.
*
* @author Steve Ebersole