From 7d125bec734d523a02b797ba6e2c5c5719814d6d Mon Sep 17 00:00:00 2001 From: Charlie Groves Date: Wed, 17 Jun 2009 01:33:15 +0000 Subject: [PATCH] KeepNoHistory is implemented by data objects, so it needs to live in data git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5827 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- .../threerings/crowd/chat/{server => data}/KeepNoHistory.java | 4 +++- src/java/com/threerings/crowd/chat/server/SpeakUtil.java | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) rename src/java/com/threerings/crowd/chat/{server => data}/KeepNoHistory.java (64%) diff --git a/src/java/com/threerings/crowd/chat/server/KeepNoHistory.java b/src/java/com/threerings/crowd/chat/data/KeepNoHistory.java similarity index 64% rename from src/java/com/threerings/crowd/chat/server/KeepNoHistory.java rename to src/java/com/threerings/crowd/chat/data/KeepNoHistory.java index 8eb8875d2..7a4007975 100644 --- a/src/java/com/threerings/crowd/chat/server/KeepNoHistory.java +++ b/src/java/com/threerings/crowd/chat/data/KeepNoHistory.java @@ -1,4 +1,6 @@ -package com.threerings.crowd.chat.server; +package com.threerings.crowd.chat.data; + +import com.threerings.crowd.chat.server.SpeakUtil; /** * Marks a {@link Name} as disinterested in chat history such that {@link SpeakUtil} will keep no diff --git a/src/java/com/threerings/crowd/chat/server/SpeakUtil.java b/src/java/com/threerings/crowd/chat/server/SpeakUtil.java index 3021b0a14..a6059603e 100644 --- a/src/java/com/threerings/crowd/chat/server/SpeakUtil.java +++ b/src/java/com/threerings/crowd/chat/server/SpeakUtil.java @@ -36,6 +36,7 @@ import com.threerings.presents.dobj.RootDObjectManager; import com.threerings.crowd.chat.data.ChatCodes; import com.threerings.crowd.chat.data.ChatMessage; +import com.threerings.crowd.chat.data.KeepNoHistory; import com.threerings.crowd.chat.data.SpeakObject; import com.threerings.crowd.chat.data.SystemMessage; import com.threerings.crowd.chat.data.UserMessage;