From 061b55815d1aa2b1475617b597775e2ef7b9d6a3 Mon Sep 17 00:00:00 2001 From: Jamie Doornbos Date: Mon, 21 Feb 2011 21:36:19 +0000 Subject: [PATCH] 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 --- .../java/com/threerings/crowd/chat/server/ChatHistory.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/threerings/crowd/chat/server/ChatHistory.java b/src/main/java/com/threerings/crowd/chat/server/ChatHistory.java index e2968b830..fa36fd691 100644 --- a/src/main/java/com/threerings/crowd/chat/server/ChatHistory.java +++ b/src/main/java/com/threerings/crowd/chat/server/ChatHistory.java @@ -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; }