forked from I2P_Developers/i2p.i2p
tweaks after review
This commit is contained in:
@ -110,7 +110,7 @@ public abstract class Translate {
|
||||
*
|
||||
* @param n how many
|
||||
* @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
|
||||
*/
|
||||
public static String getString(int n, String s, String p, I2PAppContext ctx, String bun) {
|
||||
|
@ -47,7 +47,6 @@ h4 {
|
||||
padding: 5px 10px;
|
||||
background: #b4c8ff url(images/tabletitlelight.png) repeat-x;
|
||||
text-transform: uppercase;
|
||||
text-shadow: 0px 0px 2px rgba(64, 64, 255, 0.9);
|
||||
letter-spacing: 0.08em;
|
||||
-moz-box-shadow: inset 0px 0px 4px 0px #bbf;
|
||||
-moz-border-radius: 4px;
|
||||
@ -370,4 +369,4 @@ a:active{
|
||||
color: #f93;
|
||||
text-decoration: underline;
|
||||
font-weight: bold;
|
||||
}
|
||||
}
|
||||
|
@ -386,7 +386,7 @@ public class EventPumper implements Runnable {
|
||||
// don't throw an NPE if the connect is gone again
|
||||
if(chan == null)
|
||||
return;
|
||||
chan.configureBlocking(false);;
|
||||
chan.configureBlocking(false);
|
||||
|
||||
if (!_transport.allowConnection()) {
|
||||
if (_log.shouldLog(Log.WARN))
|
||||
|
@ -17,6 +17,7 @@ import net.i2p.util.Log;
|
||||
class Reader {
|
||||
private RouterContext _context;
|
||||
private Log _log;
|
||||
// TODO change to LBQ ??
|
||||
private final List<NTCPConnection> _pendingConnections;
|
||||
private List<NTCPConnection> _liveReads;
|
||||
private List<NTCPConnection> _readAfterLive;
|
||||
|
Reference in New Issue
Block a user