Overrides & whitespace.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5421 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Dave Hoover
2008-10-08 18:51:22 +00:00
parent d68aaec196
commit df42b4a013
3 changed files with 11 additions and 10 deletions
@@ -47,7 +47,7 @@ public class BureauLogRedirector
_bureauId = bureauId; _bureauId = bureauId;
_reader = new BufferedReader(new InputStreamReader(input)); _reader = new BufferedReader(new InputStreamReader(input));
Thread thread = new Thread(bureauId) { Thread thread = new Thread(bureauId) {
public void run () { @Override public void run () {
copyLoop(); copyLoop();
}}; }};
thread.setDaemon(true); thread.setDaemon(true);
@@ -1098,7 +1098,7 @@ public class PresentsClient
{ {
if (_interval == null) { if (_interval == null) {
_interval = new Interval(_omgr) { _interval = new Interval(_omgr) {
public void expired () { @Override public void expired () {
handleOverflowMessages(); handleOverflowMessages();
} }
}; };
@@ -62,6 +62,7 @@ public class VariableThrottle extends Throttle
_ops = ops; _ops = ops;
} }
@Override
public String toString () public String toString ()
{ {
return "VariableThrottle [" + _ops.length + " per " + _period + "ms]"; return "VariableThrottle [" + _ops.length + " per " + _period + "ms]";