You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@excalibur.apache.org by vg...@apache.org on 2005/09/13 02:39:47 UTC

svn commit: r280456 - /excalibur/trunk/containerkit/logkit/src/java/org/apache/log/ContextMap.java

Author: vgritsenko
Date: Mon Sep 12 17:39:44 2005
New Revision: 280456

URL: http://svn.apache.org/viewcvs?rev=280456&view=rev
Log:
whitespace

Modified:
    excalibur/trunk/containerkit/logkit/src/java/org/apache/log/ContextMap.java

Modified: excalibur/trunk/containerkit/logkit/src/java/org/apache/log/ContextMap.java
URL: http://svn.apache.org/viewcvs/excalibur/trunk/containerkit/logkit/src/java/org/apache/log/ContextMap.java?rev=280456&r1=280455&r2=280456&view=diff
==============================================================================
--- excalibur/trunk/containerkit/logkit/src/java/org/apache/log/ContextMap.java (original)
+++ excalibur/trunk/containerkit/logkit/src/java/org/apache/log/ContextMap.java Mon Sep 12 17:39:44 2005
@@ -1,16 +1,16 @@
-/* 
- * Copyright 1999-2004 The Apache Software Foundation
+/*
+ * Copyright 1999-2005 The Apache Software Foundation
  * Licensed  under the  Apache License,  Version 2.0  (the "License");
  * you may not use  this file  except in  compliance with the License.
- * You may obtain a copy of the License at 
- * 
+ * You may obtain a copy of the License at
+ *
  *   http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing, software
  * distributed  under the  License is distributed on an "AS IS" BASIS,
  * WITHOUT  WARRANTIES OR CONDITIONS  OF ANY KIND, either  express  or
  * implied.
- * 
+ *
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
@@ -60,13 +60,13 @@
      *
      * @return the current ContextMap
      */
-    public static final ContextMap getCurrentContext()
+    public static ContextMap getCurrentContext()
     {
         return getCurrentContext( true );
     }
 
     /**
-     * Get the Current ContextMap.
+     * Get current ContextMap.
      * This method returns a ContextMap associated with current thread.
      * If the thread doesn't have a ContextMap associated with it and
      * autocreate is true then a new ContextMap is created.
@@ -74,7 +74,7 @@
      * @param autocreate true if a ContextMap is to be created if it doesn't exist
      * @return the current ContextMap
      */
-    public static final ContextMap getCurrentContext( final boolean autocreate )
+    public static ContextMap getCurrentContext( final boolean autocreate )
     {
         //Check security permission here???
         ContextMap context = (ContextMap)c_localContext.get();
@@ -93,7 +93,7 @@
      *
      * @param context the context map (may be null)
      */
-    public static final void bind( final ContextMap context )
+    public static void bind( final ContextMap context )
     {
         //Check security permission here??
         c_localContext.set( context );
@@ -179,7 +179,7 @@
     {
         if( key == null )
             return null;
-            
+
         final Object result = m_map.get( key );
 
         if( null == result && null != m_parent )



---------------------------------------------------------------------
To unsubscribe, e-mail: scm-unsubscribe@excalibur.apache.org
For additional commands, e-mail: scm-help@excalibur.apache.org