oops remove extra stuff in IndexBean

This commit is contained in:
zzz
2008-11-11 13:02:45 +00:00
parent 04509f593a
commit 6169904c76
2 changed files with 2 additions and 13 deletions

View File

@ -395,19 +395,6 @@ public class IndexBean {
return "";
}
public String getHTMLStreams(int tunnel) {
TunnelController tun = getController(tunnel);
if (tun != null) {
if (tunnel != 0 &&
"true".equalsIgnoreCase(tun.getSharedClient()) &&
isClient(tunnel))
return "Listed above";
else
return tun.getHTMLStreams();
} else
return "";
}
public String getSharedClient(int tunnel) {
TunnelController tun = getController(tunnel);
if (tun != null)

View File

@ -9,6 +9,8 @@
so they won't be rejected
- Reduce flusher delay to 250ms (was 500)
- Flush unless window is full (was window is non-empty)
* Streaming: Enforce a minimum MTU of 512
* I2PTunnel: Change "interactive" max window size to 16 (was 1)
* NetDb: Fix a deadlock caused by last checkin
2008-11-09 zzz