remove unused static log

This commit is contained in:
zzz
2013-11-02 13:53:42 +00:00
parent 48cce6435b
commit 3f39bd0f7b

View File

@ -17,11 +17,11 @@ import net.i2p.util.Log;
* @author jrandom
*/
public class I2NPMessageException extends I2PException {
private final static Log _log = new Log(I2NPMessageException.class);
public I2NPMessageException(String message, Throwable parent) {
super(message, parent);
}
public I2NPMessageException(String message) {
super(message);
}