Remove generics from BacterialNameDefaultCacheStrategy
authorAndreas Müller <a.mueller@bgbm.org>
Thu, 2 Feb 2017 13:59:33 +0000 (14:59 +0100)
committerAndreas Müller <a.mueller@bgbm.org>
Thu, 2 Feb 2017 13:59:33 +0000 (14:59 +0100)
cdmlib-model/src/main/java/eu/etaxonomy/cdm/strategy/cache/name/BacterialNameDefaultCacheStrategy.java

index 3a7760a9a6aabceafbe3087aecb5697f89356547..69e817b90ccea05805f65dcc02d601949aff2e9d 100644 (file)
@@ -1,8 +1,8 @@
 /**\r
 * Copyright (C) 2007 EDIT\r
-* European Distributed Institute of Taxonomy \r
+* European Distributed Institute of Taxonomy\r
 * http://www.e-taxonomy.eu\r
-* \r
+*\r
 * The contents of this file are subject to the Mozilla Public License Version 1.1\r
 * See LICENSE.TXT at the top of this package for the full license terms.\r
 */\r
@@ -16,28 +16,27 @@ import eu.etaxonomy.cdm.model.name.BacterialName;
 \r
 /**\r
  * The bacterial name default cache strategy.\r
- * \r
+ *\r
  * @author a.mueller\r
  *\r
  */\r
-public class BacterialNameDefaultCacheStrategy<NAME extends BacterialName> extends NonViralNameDefaultCacheStrategy<NAME> implements  INonViralNameCacheStrategy<NAME> {\r
+public class BacterialNameDefaultCacheStrategy extends NonViralNameDefaultCacheStrategy<BacterialName> implements  INonViralNameCacheStrategy<BacterialName> {\r
        private static final long serialVersionUID = 7369285557176649585L;\r
        private static final Logger logger = Logger.getLogger(BacterialNameDefaultCacheStrategy.class);\r
        final static UUID uuid = UUID.fromString("b97cf0af-2f97-487e-8d06-cbe924f3222a");\r
-       \r
+\r
        static {\r
                logger.info("BacterialNameDefaultCacheStrategy not yet really implemented. Its just a copy of BotanicalNameDefaultCacheStrategy right now !!");\r
-       };\r
-       \r
+       }\r
+\r
        @Override\r
        public  UUID getUuid(){\r
                return uuid;\r
        }\r
 \r
-       \r
+\r
        public static BacterialNameDefaultCacheStrategy NewInstance(){\r
-               \r
                return new BacterialNameDefaultCacheStrategy();\r
        }\r
-       \r
+\r
 }\r