Author: simonetripodi
Date: Thu Jul  8 15:32:00 2010
New Revision: 961810

URL: http://svn.apache.org/viewvc?rev=961810&view=rev
Log:
moved the LRU cache to a proper internal package

Added:
    
commons/sandbox/at-digester/trunk/src/java/org/apache/commons/digester/annotations/internal/
    
commons/sandbox/at-digester/trunk/src/java/org/apache/commons/digester/annotations/internal/InMemoryLRUCache.java
      - copied, changed from r961627, 
commons/sandbox/at-digester/trunk/src/java/org/apache/commons/digester/annotations/utils/InMemoryLRUCache.java
Removed:
    
commons/sandbox/at-digester/trunk/src/java/org/apache/commons/digester/annotations/utils/InMemoryLRUCache.java
Modified:
    
commons/sandbox/at-digester/trunk/src/java/org/apache/commons/digester/annotations/DigesterLoader.java

Modified: 
commons/sandbox/at-digester/trunk/src/java/org/apache/commons/digester/annotations/DigesterLoader.java
URL: 
http://svn.apache.org/viewvc/commons/sandbox/at-digester/trunk/src/java/org/apache/commons/digester/annotations/DigesterLoader.java?rev=961810&r1=961809&r2=961810&view=diff
==============================================================================
--- 
commons/sandbox/at-digester/trunk/src/java/org/apache/commons/digester/annotations/DigesterLoader.java
 (original)
+++ 
commons/sandbox/at-digester/trunk/src/java/org/apache/commons/digester/annotations/DigesterLoader.java
 Thu Jul  8 15:32:00 2010
@@ -25,9 +25,9 @@ import org.apache.commons.digester.Diges
 import org.apache.commons.digester.Rule;
 import org.apache.commons.digester.RuleSet;
 import 
org.apache.commons.digester.annotations.DigesterLoaderHandler.DefaultLoaderHandler;
+import org.apache.commons.digester.annotations.internal.InMemoryLRUCache;
 import org.apache.commons.digester.annotations.reflect.MethodArgument;
 import org.apache.commons.digester.annotations.utils.AnnotationUtils;
-import org.apache.commons.digester.annotations.utils.InMemoryLRUCache;
 
 /**
  * This class manages the creation of Digester instances analyzing target 
classes

Copied: 
commons/sandbox/at-digester/trunk/src/java/org/apache/commons/digester/annotations/internal/InMemoryLRUCache.java
 (from r961627, 
commons/sandbox/at-digester/trunk/src/java/org/apache/commons/digester/annotations/utils/InMemoryLRUCache.java)
URL: 
http://svn.apache.org/viewvc/commons/sandbox/at-digester/trunk/src/java/org/apache/commons/digester/annotations/internal/InMemoryLRUCache.java?p2=commons/sandbox/at-digester/trunk/src/java/org/apache/commons/digester/annotations/internal/InMemoryLRUCache.java&p1=commons/sandbox/at-digester/trunk/src/java/org/apache/commons/digester/annotations/utils/InMemoryLRUCache.java&r1=961627&r2=961810&rev=961810&view=diff
==============================================================================
--- 
commons/sandbox/at-digester/trunk/src/java/org/apache/commons/digester/annotations/utils/InMemoryLRUCache.java
 (original)
+++ 
commons/sandbox/at-digester/trunk/src/java/org/apache/commons/digester/annotations/internal/InMemoryLRUCache.java
 Thu Jul  8 15:32:00 2010
@@ -14,7 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package org.apache.commons.digester.annotations.utils;
+package org.apache.commons.digester.annotations.internal;
 
 import java.io.Serializable;
 import java.util.LinkedHashMap;


Reply via email to