Just expose this number in case anyone needs it

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@6502 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Jamie Doornbos
2011-02-21 21:36:19 +00:00
parent 57b0175f7d
commit 061b55815d
@@ -46,6 +46,9 @@ import com.threerings.io.Streamable;
@Singleton
public class ChatHistory
{
/** The amount of time before chat history becomes... history. */
public static final long HISTORY_EXPIRATION = 5L * 60L * 1000L;
/**
* Recorded parcel of chat for historical purposes, maintained by
* {@link #record(ChatChannel, UserMessage, Name...)},
@@ -199,7 +202,4 @@ public class ChatHistory
// dependencies
@Inject protected PresentsDObjectMgr _omgr;
/** The amount of time before chat history becomes... history. */
protected static final long HISTORY_EXPIRATION = 5L * 60L * 1000L;
}