Project

General

Profile

« Previous | Next » 

Revision 23de68fc

Added by Andreas Müller almost 2 years ago

ref #9359 upgrade cdmlib to log4j 2

View differences:

cdmlib-commons/src/main/java/eu/etaxonomy/cdm/common/DoubleResult.java
8 8
*/
9 9
package eu.etaxonomy.cdm.common;
10 10

  
11
import org.apache.log4j.Logger;
11
import org.apache.logging.log4j.LogManager;
12
import org.apache.logging.log4j.Logger;
12 13

  
13 14
/**
14 15
 * An instance of this class represents an method result that contains 2 variables. The variables may be typified.
......
17 18
 * @since 30.10.2008
18 19
 */
19 20
public class DoubleResult<S extends Object, T extends Object> {
20
	private static final Logger logger = Logger.getLogger(DoubleResult.class);
21

  
22
	private static final Logger logger = LogManager.getLogger(DoubleResult.class);
21 23

  
22 24
	private S firstResult = null;
23 25
	private T secondResult = null;
......
26 28
		if (logger.isDebugEnabled()){logger.debug("Constructor");}
27 29
	}
28 30

  
29

  
30 31
	public DoubleResult(S firstResult, T secondResult) {
31 32
		this.firstResult = firstResult;
32 33
		this.secondResult = secondResult;

Also available in: Unified diff