Merging r13268 through r14040 from trunk/cdmlib into branches/cdmlib-unitils3
[cdmlib.git] / cdmlib-io / src / main / java / eu / etaxonomy / cdm / io / common / mapping / CdmMapperBase.java
1 /**
2 * Copyright (C) 2007 EDIT
3 * European Distributed Institute of Taxonomy
4 * http://www.e-taxonomy.eu
5 *
6 * The contents of this file are subject to the Mozilla Public License Version 1.1
7 * See LICENSE.TXT at the top of this package for the full license terms.
8 */
9
10 package eu.etaxonomy.cdm.io.common.mapping;
11
12 import org.apache.log4j.Logger;
13
14 /**
15 * The most general mapper class for all cdm mappers.
16 * @author a.mueller
17 * @created 12.01.2012
18 */
19 public abstract class CdmMapperBase {
20 @SuppressWarnings("unused")
21 private static final Logger logger = Logger.getLogger(CdmMapperBase.class);
22
23 }