[jboss-cvs] JBossAS SVN: r57728 - trunk/ejb3/src/main/org/jboss/injection

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Oct 19 07:58:11 EDT 2006


Author: alesj
Date: 2006-10-19 07:58:09 -0400 (Thu, 19 Oct 2006)
New Revision: 57728

Modified:
   trunk/ejb3/src/main/org/jboss/injection/PersistenceUnitHandler.java
Log:
typo

Modified: trunk/ejb3/src/main/org/jboss/injection/PersistenceUnitHandler.java
===================================================================
--- trunk/ejb3/src/main/org/jboss/injection/PersistenceUnitHandler.java	2006-10-19 11:43:35 UTC (rev 57727)
+++ trunk/ejb3/src/main/org/jboss/injection/PersistenceUnitHandler.java	2006-10-19 11:58:09 UTC (rev 57728)
@@ -21,6 +21,15 @@
   */
 package org.jboss.injection;
 
+import java.lang.reflect.AccessibleObject;
+import java.lang.reflect.Field;
+import java.lang.reflect.Method;
+import java.util.Map;
+import javax.naming.NameNotFoundException;
+import javax.persistence.EntityManagerFactory;
+import javax.persistence.PersistenceUnit;
+import javax.persistence.PersistenceUnits;
+
 import org.hibernate.SessionFactory;
 import org.jboss.annotation.IgnoreDependency;
 import org.jboss.ejb3.entity.InjectedEntityManagerFactory;
@@ -31,15 +40,6 @@
 import org.jboss.metamodel.descriptor.EnvironmentRefGroup;
 import org.jboss.metamodel.descriptor.PersistenceUnitRef;
 
-import javax.naming.NameNotFoundException;
-import javax.persistence.EntityManagerFactory;
-import javax.persistence.PersistenceUnit;
-import javax.persistence.PersistenceUnits;
-import java.lang.reflect.AccessibleObject;
-import java.lang.reflect.Field;
-import java.lang.reflect.Method;
-import java.util.Map;
-
 /**
  * Searches bean class for all @Inject and create Injectors
  *
@@ -48,8 +48,7 @@
  */
 public class PersistenceUnitHandler implements InjectionHandler
 {
-   private static final Logger log = Logger
-           .getLogger(PersistenceContextHandler.class);
+   private static final Logger log = Logger.getLogger(PersistenceUnitHandler.class);
 
    public void loadXml(EnvironmentRefGroup xml, InjectionContainer container)
    {




More information about the jboss-cvs-commits mailing list