fixed warning regarding no uid

This commit is contained in:
Jeremy Long
2016-10-16 07:28:09 -04:00
parent 74b93ce602
commit 782ba42abc

View File

@@ -24,12 +24,17 @@ import org.slf4j.helpers.MarkerIgnoringBase;
import org.slf4j.helpers.MessageFormatter; import org.slf4j.helpers.MessageFormatter;
/** /**
* An instance of {@link org.slf4j.Logger} which simply calls the log method on the delegate Ant task. * An instance of {@link org.slf4j.Logger} which simply calls the log method on
* the delegate Ant task.
* *
* @author colezlaw * @author colezlaw
*/ */
public class AntLoggerAdapter extends MarkerIgnoringBase { public class AntLoggerAdapter extends MarkerIgnoringBase {
/**
* serialization UID.
*/
private static final long serialVersionUID = -1337;
/** /**
* A reference to the Ant task used for logging. * A reference to the Ant task used for logging.
*/ */