Clean up a couple warnings
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5618 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -39,7 +39,7 @@ public class ReportManager
|
|||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Used to generate "state of the server" reports.
|
* Used to generate "state of the server" reports.
|
||||||
* See {@link ReportManager#registerReporter}.
|
* See {@link ReportManager#registerReporter(Reporter)}.
|
||||||
* */
|
* */
|
||||||
public static interface Reporter
|
public static interface Reporter
|
||||||
{
|
{
|
||||||
@@ -178,7 +178,7 @@ public class ReportManager
|
|||||||
/** The time at which the server was started. */
|
/** The time at which the server was started. */
|
||||||
protected long _serverStartTime = System.currentTimeMillis();
|
protected long _serverStartTime = System.currentTimeMillis();
|
||||||
|
|
||||||
/** The last time at which {@link #generateReport(long,boolean)} was run. */
|
/** The last time at which {@link #generateReport(String,long,boolean)} was run. */
|
||||||
protected long _lastReportStamp = _serverStartTime;
|
protected long _lastReportStamp = _serverStartTime;
|
||||||
|
|
||||||
/** Used to generate "state of server" reports. */
|
/** Used to generate "state of server" reports. */
|
||||||
|
|||||||
@@ -51,7 +51,7 @@ import static com.threerings.presents.Log.log;
|
|||||||
*/
|
*/
|
||||||
public class Connection implements NetEventHandler
|
public class Connection implements NetEventHandler
|
||||||
{
|
{
|
||||||
/** Used with {@link #setMessageHandler}. */
|
/** Used with {@link Connection#setMessageHandler}. */
|
||||||
public static interface MessageHandler {
|
public static interface MessageHandler {
|
||||||
/** Called when a complete message has been parsed from incoming network data. */
|
/** Called when a complete message has been parsed from incoming network data. */
|
||||||
void handleMessage (Message message);
|
void handleMessage (Message message);
|
||||||
|
|||||||
@@ -24,7 +24,6 @@ package com.threerings.presents.server.net;
|
|||||||
import java.net.InetSocketAddress;
|
import java.net.InetSocketAddress;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Iterator;
|
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user