You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mc...@apache.org on 2011/10/29 20:00:28 UTC

svn commit: r1194954 - in /commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal: ./ entry/

Author: mcucchiara
Date: Sat Oct 29 18:00:27 2011
New Revision: 1194954

URL: http://svn.apache.org/viewvc?rev=1194954&view=rev
Log:
OGNL-11: fixed checkstyle errors (Fixed licence header position)

Modified:
    commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/HashMapCache.java
    commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/HashMapCacheFactory.java
    commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/HashMapClassCache.java
    commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/ReentrantReadWriteLockCache.java
    commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/ReentrantReadWriteLockCacheFactory.java
    commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/ReentrantReadWriteLockClassCache.java
    commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/entry/CacheEntry.java
    commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/entry/CacheEntryFactory.java
    commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/entry/ClassCacheEntryFactory.java
    commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/entry/DeclaredMethodCacheEntry.java
    commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/entry/DeclaredMethodCacheEntryFactory.java
    commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/entry/FiedlCacheEntryFactory.java
    commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/entry/GenericMethodParameterTypeCacheEntry.java

Modified: commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/HashMapCache.java
URL: http://svn.apache.org/viewvc/commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/HashMapCache.java?rev=1194954&r1=1194953&r2=1194954&view=diff
==============================================================================
--- commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/HashMapCache.java (original)
+++ commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/HashMapCache.java Sat Oct 29 18:00:27 2011
@@ -1,7 +1,7 @@
+package org.apache.commons.ognl.internal;
+
 /*
- * $Id$
- *
- * Licensed to the Apache Software Foundation (ASF) under one  
+ * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information       
  * regarding copyright ownership.  The ASF licenses this file  
@@ -19,7 +19,9 @@
  * under the License.
  */
 
-package org.apache.commons.ognl.internal;
+/*
+ * $Id$
+ */
 
 import org.apache.commons.ognl.internal.entry.CacheEntryFactory;
 

Modified: commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/HashMapCacheFactory.java
URL: http://svn.apache.org/viewvc/commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/HashMapCacheFactory.java?rev=1194954&r1=1194953&r2=1194954&view=diff
==============================================================================
--- commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/HashMapCacheFactory.java (original)
+++ commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/HashMapCacheFactory.java Sat Oct 29 18:00:27 2011
@@ -1,6 +1,6 @@
+package org.apache.commons.ognl.internal;
+
 /*
- * $Id$
- *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -19,7 +19,9 @@
  * under the License.
  */
 
-package org.apache.commons.ognl.internal;
+/*
+ * $Id$
+ */
 
 import org.apache.commons.ognl.internal.entry.CacheEntryFactory;
 import org.apache.commons.ognl.internal.entry.ClassCacheEntryFactory;

Modified: commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/HashMapClassCache.java
URL: http://svn.apache.org/viewvc/commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/HashMapClassCache.java?rev=1194954&r1=1194953&r2=1194954&view=diff
==============================================================================
--- commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/HashMapClassCache.java (original)
+++ commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/HashMapClassCache.java Sat Oct 29 18:00:27 2011
@@ -1,7 +1,7 @@
+package org.apache.commons.ognl.internal;
+
 /*
- * $Id$
- *
- * Licensed to the Apache Software Foundation (ASF) under one  
+ * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information       
  * regarding copyright ownership.  The ASF licenses this file  
@@ -19,7 +19,10 @@
  * under the License.
  */
 
-package org.apache.commons.ognl.internal;
+/*
+ * $Id$
+ *
+ */
 
 import org.apache.commons.ognl.ClassCacheInspector;
 import org.apache.commons.ognl.internal.entry.CacheEntryFactory;

Modified: commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/ReentrantReadWriteLockCache.java
URL: http://svn.apache.org/viewvc/commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/ReentrantReadWriteLockCache.java?rev=1194954&r1=1194953&r2=1194954&view=diff
==============================================================================
--- commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/ReentrantReadWriteLockCache.java (original)
+++ commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/ReentrantReadWriteLockCache.java Sat Oct 29 18:00:27 2011
@@ -1,6 +1,6 @@
+package org.apache.commons.ognl.internal;
+
 /*
- * $Id$
- *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -19,8 +19,9 @@
  * under the License.
  */
 
-package org.apache.commons.ognl.internal;
-
+/*
+ * $Id$
+ */
 
 import org.apache.commons.ognl.internal.entry.CacheEntryFactory;
 

Modified: commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/ReentrantReadWriteLockCacheFactory.java
URL: http://svn.apache.org/viewvc/commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/ReentrantReadWriteLockCacheFactory.java?rev=1194954&r1=1194953&r2=1194954&view=diff
==============================================================================
--- commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/ReentrantReadWriteLockCacheFactory.java (original)
+++ commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/ReentrantReadWriteLockCacheFactory.java Sat Oct 29 18:00:27 2011
@@ -1,6 +1,6 @@
+package org.apache.commons.ognl.internal;
+
 /*
- * $Id$
- *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -19,7 +19,9 @@
  * under the License.
  */
 
-package org.apache.commons.ognl.internal;
+/*
+ * $Id$
+ */
 
 import org.apache.commons.ognl.internal.entry.CacheEntryFactory;
 import org.apache.commons.ognl.internal.entry.ClassCacheEntryFactory;

Modified: commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/ReentrantReadWriteLockClassCache.java
URL: http://svn.apache.org/viewvc/commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/ReentrantReadWriteLockClassCache.java?rev=1194954&r1=1194953&r2=1194954&view=diff
==============================================================================
--- commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/ReentrantReadWriteLockClassCache.java (original)
+++ commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/ReentrantReadWriteLockClassCache.java Sat Oct 29 18:00:27 2011
@@ -1,7 +1,7 @@
+package org.apache.commons.ognl.internal;
+
 /*
- * $Id$
- *
- * Licensed to the Apache Software Foundation (ASF) under one  
+ * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information       
  * regarding copyright ownership.  The ASF licenses this file  
@@ -19,7 +19,9 @@
  * under the License.
  */
 
-package org.apache.commons.ognl.internal;
+/*
+ * $Id$
+ */
 
 import org.apache.commons.ognl.ClassCacheInspector;
 import org.apache.commons.ognl.internal.entry.CacheEntryFactory;

Modified: commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/entry/CacheEntry.java
URL: http://svn.apache.org/viewvc/commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/entry/CacheEntry.java?rev=1194954&r1=1194953&r2=1194954&view=diff
==============================================================================
--- commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/entry/CacheEntry.java (original)
+++ commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/entry/CacheEntry.java Sat Oct 29 18:00:27 2011
@@ -1,6 +1,6 @@
+package org.apache.commons.ognl.internal.entry;
+
 /*
- * $Id$
- *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -19,7 +19,9 @@
  * under the License.
  */
 
-package org.apache.commons.ognl.internal.entry;
+/*
+ * $Id$
+ */
 
 public interface CacheEntry
 {

Modified: commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/entry/CacheEntryFactory.java
URL: http://svn.apache.org/viewvc/commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/entry/CacheEntryFactory.java?rev=1194954&r1=1194953&r2=1194954&view=diff
==============================================================================
--- commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/entry/CacheEntryFactory.java (original)
+++ commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/entry/CacheEntryFactory.java Sat Oct 29 18:00:27 2011
@@ -1,6 +1,6 @@
+package org.apache.commons.ognl.internal.entry;
+
 /*
- * $Id$
- *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -19,7 +19,9 @@
  * under the License.
  */
 
-package org.apache.commons.ognl.internal.entry;
+/*
+ * $Id$
+ */
 
 import org.apache.commons.ognl.internal.CacheException;
 

Modified: commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/entry/ClassCacheEntryFactory.java
URL: http://svn.apache.org/viewvc/commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/entry/ClassCacheEntryFactory.java?rev=1194954&r1=1194953&r2=1194954&view=diff
==============================================================================
--- commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/entry/ClassCacheEntryFactory.java (original)
+++ commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/entry/ClassCacheEntryFactory.java Sat Oct 29 18:00:27 2011
@@ -1,6 +1,6 @@
+package org.apache.commons.ognl.internal.entry;
+
 /*
- * $Id$
- *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -19,7 +19,9 @@
  * under the License.
  */
 
-package org.apache.commons.ognl.internal.entry;
+/*
+ * $Id$
+ */
 
 public interface ClassCacheEntryFactory<T>
     extends CacheEntryFactory<Class<?>, T>

Modified: commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/entry/DeclaredMethodCacheEntry.java
URL: http://svn.apache.org/viewvc/commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/entry/DeclaredMethodCacheEntry.java?rev=1194954&r1=1194953&r2=1194954&view=diff
==============================================================================
--- commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/entry/DeclaredMethodCacheEntry.java (original)
+++ commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/entry/DeclaredMethodCacheEntry.java Sat Oct 29 18:00:27 2011
@@ -1,6 +1,6 @@
+package org.apache.commons.ognl.internal.entry;
+
 /*
- * $Id$
- *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -19,7 +19,9 @@
  * under the License.
  */
 
-package org.apache.commons.ognl.internal.entry;
+/*
+ * $Id$
+ */
 
 public class DeclaredMethodCacheEntry
     extends MethodCacheEntry

Modified: commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/entry/DeclaredMethodCacheEntryFactory.java
URL: http://svn.apache.org/viewvc/commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/entry/DeclaredMethodCacheEntryFactory.java?rev=1194954&r1=1194953&r2=1194954&view=diff
==============================================================================
--- commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/entry/DeclaredMethodCacheEntryFactory.java (original)
+++ commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/entry/DeclaredMethodCacheEntryFactory.java Sat Oct 29 18:00:27 2011
@@ -1,7 +1,7 @@
+package org.apache.commons.ognl.internal.entry;
+
 /*
- * $Id$
- *
- * Licensed to the Apache Software Foundation (ASF) under one  
+ * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information       
  * regarding copyright ownership.  The ASF licenses this file  
@@ -19,7 +19,9 @@
  * under the License.
  */
 
-package org.apache.commons.ognl.internal.entry;
+/*
+ * $Id$
+ */
 
 import java.lang.reflect.Method;
 import java.lang.reflect.Modifier;

Modified: commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/entry/FiedlCacheEntryFactory.java
URL: http://svn.apache.org/viewvc/commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/entry/FiedlCacheEntryFactory.java?rev=1194954&r1=1194953&r2=1194954&view=diff
==============================================================================
--- commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/entry/FiedlCacheEntryFactory.java (original)
+++ commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/entry/FiedlCacheEntryFactory.java Sat Oct 29 18:00:27 2011
@@ -1,6 +1,6 @@
+package org.apache.commons.ognl.internal.entry;
+
 /*
- * $Id$
- *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -19,7 +19,9 @@
  * under the License.
  */
 
-package org.apache.commons.ognl.internal.entry;
+/*
+ * $Id$
+ */
 
 import org.apache.commons.ognl.internal.CacheException;
 

Modified: commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/entry/GenericMethodParameterTypeCacheEntry.java
URL: http://svn.apache.org/viewvc/commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/entry/GenericMethodParameterTypeCacheEntry.java?rev=1194954&r1=1194953&r2=1194954&view=diff
==============================================================================
--- commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/entry/GenericMethodParameterTypeCacheEntry.java (original)
+++ commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/entry/GenericMethodParameterTypeCacheEntry.java Sat Oct 29 18:00:27 2011
@@ -1,6 +1,6 @@
+package org.apache.commons.ognl.internal.entry;
+
 /*
- * $Id$
- *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -19,7 +19,9 @@
  * under the License.
  */
 
-package org.apache.commons.ognl.internal.entry;
+/*
+ * $Id$
+ */
 
 import java.lang.reflect.Method;