diff --git a/core/java/src/net/i2p/stat/RateStat.java b/core/java/src/net/i2p/stat/RateStat.java index fded9b019f..21ed5be554 100644 --- a/core/java/src/net/i2p/stat/RateStat.java +++ b/core/java/src/net/i2p/stat/RateStat.java @@ -12,13 +12,13 @@ import net.i2p.util.Log; public class RateStat { private final static Log _log = new Log(RateStat.class); /** unique name of the statistic */ - private String _statName; + private final String _statName; /** grouping under which the stat is kept */ - private String _groupName; + private final String _groupName; /** describe the stat */ - private String _description; + private final String _description; /** actual rate objects for this statistic */ - private Rate _rates[]; + private final Rate _rates[]; /** component we tell about events as they occur */ private StatLog _statLog;