refactored fitlered selection a little bit
authorn.hoffmann <n.hoffmann@localhost>
Tue, 8 Sep 2009 16:09:40 +0000 (16:09 +0000)
committern.hoffmann <n.hoffmann@localhost>
Tue, 8 Sep 2009 16:09:40 +0000 (16:09 +0000)
.gitattributes
taxeditor-store/src/main/java/eu/etaxonomy/taxeditor/model/UuidAndTitleCache.java [deleted file]

index 1d17d6f899fe07704b3a7d052a520e56702215dd..ba7a2f9546fb27d7ea4afec9950f1b7fe352313b 100644 (file)
@@ -1071,7 +1071,6 @@ taxeditor-store/src/main/java/eu/etaxonomy/taxeditor/model/SynonymHelper.java -t
 taxeditor-store/src/main/java/eu/etaxonomy/taxeditor/model/TaxonHelper.java -text
 taxeditor-store/src/main/java/eu/etaxonomy/taxeditor/model/TaxonTransfer.java -text
 taxeditor-store/src/main/java/eu/etaxonomy/taxeditor/model/TimeHelper.java -text
-taxeditor-store/src/main/java/eu/etaxonomy/taxeditor/model/UuidAndTitleCache.java -text
 taxeditor-store/src/main/java/eu/etaxonomy/taxeditor/operations/AbstractPersistentPostOperation.java -text
 taxeditor-store/src/main/java/eu/etaxonomy/taxeditor/operations/AbstractPostOperation.java -text
 taxeditor-store/src/main/java/eu/etaxonomy/taxeditor/operations/ChangeConceptRelationshipTypeOperation.java -text
diff --git a/taxeditor-store/src/main/java/eu/etaxonomy/taxeditor/model/UuidAndTitleCache.java b/taxeditor-store/src/main/java/eu/etaxonomy/taxeditor/model/UuidAndTitleCache.java
deleted file mode 100644 (file)
index 7b0e025..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-// $Id$
-/**
-* Copyright (C) 2007 EDIT
-* European Distributed Institute of Taxonomy 
-* http://www.e-taxonomy.eu
-* 
-* The contents of this file are subject to the Mozilla Public License Version 1.1
-* See LICENSE.TXT at the top of this package for the full license terms.
-*/
-
-package eu.etaxonomy.taxeditor.model;
-
-import java.util.UUID;
-
-import org.apache.log4j.Logger;
-
-/**
- * @author n.hoffmann
- * @created Aug 14, 2009
- * @version 1.0
- */
-public class UuidAndTitleCache {
-       private static final Logger logger = Logger
-                       .getLogger(UuidAndTitleCache.class);
-       
-       UUID uuid;
-       String titleCache;
-       
-       public UuidAndTitleCache(UUID uuid, String titleCache) {
-               this.uuid = uuid;
-               this.titleCache = titleCache;
-       }
-       
-       /**
-        * @return the titleCache
-        */
-       public String getTitleCache() {
-               return titleCache;
-       }
-       
-       /**
-        * @return the uuid
-        */
-       public UUID getUuid() {
-               return uuid;
-       }
-       
-}