make renderers package private

This commit is contained in:
zzz
2016-02-21 14:02:12 +00:00
parent a3cac88c91
commit fa44a952ed
3 changed files with 4 additions and 4 deletions

View File

@ -24,7 +24,7 @@ import net.i2p.router.Banlist;
/**
* Moved from Banlist.java
*/
public class BanlistRenderer {
class BanlistRenderer {
private final RouterContext _context;
public BanlistRenderer(RouterContext context) {

View File

@ -23,7 +23,7 @@ import net.i2p.util.SystemVersion;
* Refactored from summarynoframe.jsp to save ~100KB
*
*/
public class SummaryBarRenderer {
class SummaryBarRenderer {
static final String ALL_SECTIONS[] =
{"HelpAndFAQ", "I2PServices", "I2PInternals", "General", "ShortGeneral", "NetworkReachability",

View File

@ -21,9 +21,9 @@ import net.i2p.router.tunnel.pool.TunnelPool;
import net.i2p.stat.RateStat;
/**
* tunnels.jsp
* For /tunnels.jsp, used by TunnelHelper.
*/
public class TunnelRenderer {
class TunnelRenderer {
private RouterContext _context;
private static final int DISPLAY_LIMIT = 200;