Author: mcucchiara Date: Sat Oct 29 17:52:20 2011 New Revision: 1194950 URL: http://svn.apache.org/viewvc?rev=1194950&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/ConcurrentHashMapCache.java commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/ConcurrentHashMapCacheFactory.java commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/ConcurrentHashMapClassCache.java Modified: commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/ConcurrentHashMapCache.java URL: http://svn.apache.org/viewvc/commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/ConcurrentHashMapCache.java?rev=1194950&r1=1194949&r2=1194950&view=diff ============================================================================== --- commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/ConcurrentHashMapCache.java (original) +++ commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/ConcurrentHashMapCache.java Sat Oct 29 17:52:20 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,8 +19,9 @@ * under the License. */ -package org.apache.commons.ognl.internal; - +/* + * $Id$ + */ import org.apache.commons.ognl.internal.entry.CacheEntryFactory; import java.util.concurrent.ConcurrentHashMap; Modified: commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/ConcurrentHashMapCacheFactory.java URL: http://svn.apache.org/viewvc/commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/ConcurrentHashMapCacheFactory.java?rev=1194950&r1=1194949&r2=1194950&view=diff ============================================================================== --- commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/ConcurrentHashMapCacheFactory.java (original) +++ commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/ConcurrentHashMapCacheFactory.java Sat Oct 29 17:52:20 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; import org.apache.commons.ognl.internal.entry.ClassCacheEntryFactory; Modified: commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/ConcurrentHashMapClassCache.java URL: http://svn.apache.org/viewvc/commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/ConcurrentHashMapClassCache.java?rev=1194950&r1=1194949&r2=1194950&view=diff ============================================================================== --- commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/ConcurrentHashMapClassCache.java (original) +++ commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/ConcurrentHashMapClassCache.java Sat Oct 29 17:52:20 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,13 +19,15 @@ * under the License. */ -package org.apache.commons.ognl.internal; - import org.apache.commons.ognl.ClassCacheInspector; import org.apache.commons.ognl.internal.entry.CacheEntryFactory; +/* + * $Id$ + */ + public class ConcurrentHashMapClassCache<T> - extends ConcurrentHashMapCache<Class<?>,T> + extends ConcurrentHashMapCache<Class<?>, T> implements ClassCache<T> { private ClassCacheInspector inspector;