From 62f056f8842d48fc32c3076a0b2bbf94255371cf Mon Sep 17 00:00:00 2001 From: zzz Date: Wed, 30 Dec 2009 22:28:07 +0000 Subject: [PATCH] remove more unused logs --- router/java/src/net/i2p/data/i2np/DataMessage.java | 2 -- .../java/src/net/i2p/data/i2np/DatabaseSearchReplyMessage.java | 2 -- router/java/src/net/i2p/data/i2np/DatabaseStoreMessage.java | 2 -- router/java/src/net/i2p/data/i2np/DateMessage.java | 2 -- router/java/src/net/i2p/data/i2np/DeliveryStatusMessage.java | 2 -- 5 files changed, 10 deletions(-) diff --git a/router/java/src/net/i2p/data/i2np/DataMessage.java b/router/java/src/net/i2p/data/i2np/DataMessage.java index cd4c4d327..641d6b40b 100644 --- a/router/java/src/net/i2p/data/i2np/DataMessage.java +++ b/router/java/src/net/i2p/data/i2np/DataMessage.java @@ -12,7 +12,6 @@ import java.io.IOException; import net.i2p.I2PAppContext; import net.i2p.data.DataHelper; -// import net.i2p.util.Log; /** * Defines a message containing arbitrary bytes of data @@ -20,7 +19,6 @@ import net.i2p.data.DataHelper; * @author jrandom */ public class DataMessage extends I2NPMessageImpl { - // private final static Log _log = new Log(DataMessage.class); public final static int MESSAGE_TYPE = 20; private byte _data[]; diff --git a/router/java/src/net/i2p/data/i2np/DatabaseSearchReplyMessage.java b/router/java/src/net/i2p/data/i2np/DatabaseSearchReplyMessage.java index f477ef2a1..ab3a7f678 100644 --- a/router/java/src/net/i2p/data/i2np/DatabaseSearchReplyMessage.java +++ b/router/java/src/net/i2p/data/i2np/DatabaseSearchReplyMessage.java @@ -15,7 +15,6 @@ import java.util.List; import net.i2p.I2PAppContext; import net.i2p.data.DataHelper; import net.i2p.data.Hash; -import net.i2p.util.Log; /** * Defines the message a router sends to another router in response to a @@ -25,7 +24,6 @@ import net.i2p.util.Log; * @author jrandom */ public class DatabaseSearchReplyMessage extends I2NPMessageImpl { - private final static Log _log = new Log(DatabaseSearchReplyMessage.class); public final static int MESSAGE_TYPE = 3; private Hash _key; private List _peerHashes; diff --git a/router/java/src/net/i2p/data/i2np/DatabaseStoreMessage.java b/router/java/src/net/i2p/data/i2np/DatabaseStoreMessage.java index 9bf61e843..17a81ec09 100644 --- a/router/java/src/net/i2p/data/i2np/DatabaseStoreMessage.java +++ b/router/java/src/net/i2p/data/i2np/DatabaseStoreMessage.java @@ -18,7 +18,6 @@ import net.i2p.data.Hash; import net.i2p.data.LeaseSet; import net.i2p.data.RouterInfo; import net.i2p.data.TunnelId; -import net.i2p.util.Log; /** * Defines the message a router sends to another router to test the network @@ -27,7 +26,6 @@ import net.i2p.util.Log; * @author jrandom */ public class DatabaseStoreMessage extends I2NPMessageImpl { - private final static Log _log = new Log(DatabaseStoreMessage.class); public final static int MESSAGE_TYPE = 1; private Hash _key; private int _type; diff --git a/router/java/src/net/i2p/data/i2np/DateMessage.java b/router/java/src/net/i2p/data/i2np/DateMessage.java index 166ecafd3..3b84d4057 100644 --- a/router/java/src/net/i2p/data/i2np/DateMessage.java +++ b/router/java/src/net/i2p/data/i2np/DateMessage.java @@ -12,14 +12,12 @@ import java.io.IOException; import net.i2p.I2PAppContext; import net.i2p.data.DataHelper; -import net.i2p.util.Log; /** * Contains the sending router's current time, to sync (and verify sync) * */ public class DateMessage extends I2NPMessageImpl { - private final static Log _log = new Log(DateMessage.class); public final static int MESSAGE_TYPE = 16; private long _now; diff --git a/router/java/src/net/i2p/data/i2np/DeliveryStatusMessage.java b/router/java/src/net/i2p/data/i2np/DeliveryStatusMessage.java index 9325a6333..e04d6e642 100644 --- a/router/java/src/net/i2p/data/i2np/DeliveryStatusMessage.java +++ b/router/java/src/net/i2p/data/i2np/DeliveryStatusMessage.java @@ -12,7 +12,6 @@ import java.io.IOException; import net.i2p.I2PAppContext; import net.i2p.data.DataHelper; -import net.i2p.util.Log; /** * Defines the message sent back in reply to a message when requested, containing @@ -21,7 +20,6 @@ import net.i2p.util.Log; * @author jrandom */ public class DeliveryStatusMessage extends I2NPMessageImpl { - private final static Log _log = new Log(DeliveryStatusMessage.class); public final static int MESSAGE_TYPE = 10; private long _id; private long _arrival;