[jboss-cvs] jboss-seam/src/main/org/jboss/seam/contexts ...

Gavin King gavin.king at jboss.com
Wed Jun 20 04:36:11 EDT 2007


  User: gavin   
  Date: 07/06/20 04:36:11

  Modified:    src/main/org/jboss/seam/contexts    Contexts.java
                        FacesLifecycle.java Lifecycle.java
  Log:
  minor
  
  Revision  Changes    Path
  1.53      +1 -1      jboss-seam/src/main/org/jboss/seam/contexts/Contexts.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Contexts.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/contexts/Contexts.java,v
  retrieving revision 1.52
  retrieving revision 1.53
  diff -u -b -r1.52 -r1.53
  --- Contexts.java	20 Jun 2007 08:23:17 -0000	1.52
  +++ Contexts.java	20 Jun 2007 08:36:11 -0000	1.53
  @@ -242,7 +242,7 @@
      /**
       * Destroy all components in the given context
       */
  -   public static void destroy(Context context)
  +   static void destroy(Context context)
      {
         if ( Events.exists() ) Events.instance().raiseEvent("org.jboss.seam.preDestroyContext." + context.getType().toString());
         
  
  
  
  1.2       +1 -1      jboss-seam/src/main/org/jboss/seam/contexts/FacesLifecycle.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: FacesLifecycle.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/contexts/FacesLifecycle.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- FacesLifecycle.java	20 Jun 2007 08:23:17 -0000	1.1
  +++ FacesLifecycle.java	20 Jun 2007 08:36:11 -0000	1.2
  @@ -96,7 +96,7 @@
       * (portlet or servlet). Why is this method not on ExternalContext?!
       * Oh boy, those crazy rascals in the JSF EG...
       */
  -   public static void invalidateSession(ExternalContext externalContext)
  +   private static void invalidateSession(ExternalContext externalContext)
      {
         Object session = externalContext.getSession(false);
         if (session!=null)
  
  
  
  1.102     +1 -1      jboss-seam/src/main/org/jboss/seam/contexts/Lifecycle.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Lifecycle.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/contexts/Lifecycle.java,v
  retrieving revision 1.101
  retrieving revision 1.102
  diff -u -b -r1.101 -r1.102
  --- Lifecycle.java	20 Jun 2007 08:23:17 -0000	1.101
  +++ Lifecycle.java	20 Jun 2007 08:36:11 -0000	1.102
  @@ -22,7 +22,7 @@
   public class Lifecycle
   {
   
  -   static final LogProvider log = Logging.getLogProvider(Lifecycle.class);
  +   private static final LogProvider log = Logging.getLogProvider(Lifecycle.class);
   
      private static ThreadLocal<Boolean> destroying = new ThreadLocal<Boolean>();
      private static Map<String, Object> application;
  
  
  



More information about the jboss-cvs-commits mailing list