Changed the weird-ass argument ordering for the UserMessage constructors. I'd

like to change the ordering for ChatMessage and its other derivations (the
bundle should precede the message) but that's more dangerous as the constructor
signature would not change.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4253 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2006-07-06 00:35:11 +00:00
parent a3c86ec1d4
commit 8df1c91699
3 changed files with 4 additions and 4 deletions
@@ -188,7 +188,7 @@ public class SpeakProvider
public static void sendSpeak (DObject speakObj, Name speaker,
String bundle, String message, byte mode)
{
sendMessage(speakObj, new UserMessage(message, bundle, speaker, mode));
sendMessage(speakObj, new UserMessage(speaker, bundle, message, mode));
}
/**