[jboss-cvs] jboss-seam/examples/spring/src/org/jboss/seam/ioc/spring ...

Norman Richards norman.richards at jboss.com
Mon Feb 12 17:36:39 EST 2007


  User: nrichards
  Date: 07/02/12 17:36:39

  Modified:    examples/spring/src/org/jboss/seam/ioc/spring 
                        SeamPostProcessor.java
  Log:
  clean up
  
  Revision  Changes    Path
  1.4       +103 -106  jboss-seam/examples/spring/src/org/jboss/seam/ioc/spring/SeamPostProcessor.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: SeamPostProcessor.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/spring/src/org/jboss/seam/ioc/spring/SeamPostProcessor.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- SeamPostProcessor.java	12 Feb 2007 22:24:28 -0000	1.3
  +++ SeamPostProcessor.java	12 Feb 2007 22:36:39 -0000	1.4
  @@ -24,7 +24,9 @@
    *
    * @author youngm
    */
  -public class SeamPostProcessor implements BeanFactoryPostProcessor, InitializingBean
  +public class SeamPostProcessor 
  +    implements BeanFactoryPostProcessor, 
  +               InitializingBean
   {
      private static final LogProvider log = Logging.getLogProvider(SeamPostProcessor.class);
   
  @@ -35,9 +37,6 @@
   
      private String scopePrefix;
   
  -    public SeamPostProcessor() {
  -        System.out.println("****************** new seam post processor");
  -    }
   
       /**
       * Null is not a valid scopePrefix so make it the default is used if null or empty.
  @@ -46,7 +45,6 @@
       */
      public void afterPropertiesSet() throws Exception
      {
  -       System.out.println("****************** after properties set");
         if (scopePrefix == null || "".equals(scopePrefix))
         {
            scopePrefix = DEFAULT_SCOPE_PREFIX;
  @@ -60,7 +58,6 @@
       */
      public void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory) throws BeansException
      {
  -       System.out.println("****************** post process");
         for (ScopeType scope : ScopeType.values())
         {
            // Don't create a scope for UnSpecified
  
  
  



More information about the jboss-cvs-commits mailing list