tweaks after review

This commit is contained in:
zzz
2010-06-06 20:36:54 +00:00
parent fc60768a66
commit c20bef3731
4 changed files with 4 additions and 4 deletions

View File

@@ -110,7 +110,7 @@ public abstract class Translate {
* *
* @param n how many * @param n how many
* @param s singluar string, optionally with {0} e.g. "one tunnel" * @param s singluar string, optionally with {0} e.g. "one tunnel"
* @param s plural string optionally with {0} e.g. "{0} tunnels" * @param p plural string optionally with {0} e.g. "{0} tunnels"
* @since 0.7.14 * @since 0.7.14
*/ */
public static String getString(int n, String s, String p, I2PAppContext ctx, String bun) { public static String getString(int n, String s, String p, I2PAppContext ctx, String bun) {

View File

@@ -47,7 +47,6 @@ h4 {
padding: 5px 10px; padding: 5px 10px;
background: #b4c8ff url(images/tabletitlelight.png) repeat-x; background: #b4c8ff url(images/tabletitlelight.png) repeat-x;
text-transform: uppercase; text-transform: uppercase;
text-shadow: 0px 0px 2px rgba(64, 64, 255, 0.9);
letter-spacing: 0.08em; letter-spacing: 0.08em;
-moz-box-shadow: inset 0px 0px 4px 0px #bbf; -moz-box-shadow: inset 0px 0px 4px 0px #bbf;
-moz-border-radius: 4px; -moz-border-radius: 4px;

View File

@@ -386,7 +386,7 @@ public class EventPumper implements Runnable {
// don't throw an NPE if the connect is gone again // don't throw an NPE if the connect is gone again
if(chan == null) if(chan == null)
return; return;
chan.configureBlocking(false);; chan.configureBlocking(false);
if (!_transport.allowConnection()) { if (!_transport.allowConnection()) {
if (_log.shouldLog(Log.WARN)) if (_log.shouldLog(Log.WARN))

View File

@@ -17,6 +17,7 @@ import net.i2p.util.Log;
class Reader { class Reader {
private RouterContext _context; private RouterContext _context;
private Log _log; private Log _log;
// TODO change to LBQ ??
private final List<NTCPConnection> _pendingConnections; private final List<NTCPConnection> _pendingConnections;
private List<NTCPConnection> _liveReads; private List<NTCPConnection> _liveReads;
private List<NTCPConnection> _readAfterLive; private List<NTCPConnection> _readAfterLive;