Author: mcucchiara Date: Sat Oct 29 17:54:24 2011 New Revision: 1194951 URL: http://svn.apache.org/viewvc?rev=1194951&view=rev Log: OGNL-11: fixed checkstyle errors (Fixed licence header position, also added missing spaces)
Modified: commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/Entry.java Modified: commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/Entry.java URL: http://svn.apache.org/viewvc/commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/Entry.java?rev=1194951&r1=1194950&r2=1194951&view=diff ============================================================================== --- commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/Entry.java (original) +++ commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/internal/Entry.java Sat Oct 29 17:54:24 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,15 +19,16 @@ * under the License. */ -package org.apache.commons.ognl.internal; /** * Used by {@link ClassCacheImpl} to store entries in the cache. + * <p/> + * $Id$ */ -class Entry<K,V> +class Entry<K, V> { - private Entry<K,V> next; + private Entry<K, V> next; private final K key; @@ -54,12 +55,12 @@ class Entry<K,V> this.value = value; } - public Entry<K,V> getNext() + public Entry<K, V> getNext() { return next; } - public void setNext( Entry<K,V> next ) + public void setNext( Entry<K, V> next ) { this.next = next; }