[weld-commits] Weld SVN: r6155 - extensions/trunk/src/main/java/org/jboss/weld/extensions/beanManager.

weld-commits at lists.jboss.org weld-commits at lists.jboss.org
Sun Apr 25 15:11:51 EDT 2010


Author: pete.muir at jboss.org
Date: 2010-04-25 15:11:51 -0400 (Sun, 25 Apr 2010)
New Revision: 6155

Removed:
   extensions/trunk/src/main/java/org/jboss/weld/extensions/beanManager/WeldBeanManagerProvider.java
Log:
Fix compile problems by removing WeldManagerProvider for now (more discussion needed about where to put it)

Deleted: extensions/trunk/src/main/java/org/jboss/weld/extensions/beanManager/WeldBeanManagerProvider.java
===================================================================
--- extensions/trunk/src/main/java/org/jboss/weld/extensions/beanManager/WeldBeanManagerProvider.java	2010-04-24 21:52:50 UTC (rev 6154)
+++ extensions/trunk/src/main/java/org/jboss/weld/extensions/beanManager/WeldBeanManagerProvider.java	2010-04-25 19:11:51 UTC (rev 6155)
@@ -1,46 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source
- * Copyright 2010, Red Hat, Inc., and individual contributors
- * by the @authors tag. See the copyright.txt in the distribution for a
- * full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
-package org.jboss.weld.extensions.beanManager;
-
-import javax.enterprise.inject.spi.BeanManager;
-
-import org.jboss.weld.Container;
-
-/**
- * A Weld-specific BeanManager provider
- * 
- * @author Nicklas Karlsson
- *
- */
-public class WeldBeanManagerProvider implements BeanManagerProvider
-{
-
-   public BeanManager getBeanManager()
-   {
-      return Container.instance().deploymentManager();
-   }
-
-   public int getPrecedence()
-   {
-      return 30;
-   }
-}



More information about the weld-commits mailing list