From 2a4ac9b96ad9edaef7cb8b0fa44b0b776e5f68e9 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Wed, 29 Apr 2009 21:59:40 +0000 Subject: [PATCH] These don't need to be final. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5759 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- .../com/threerings/presents/server/PresentsSession.java | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/java/com/threerings/presents/server/PresentsSession.java b/src/java/com/threerings/presents/server/PresentsSession.java index fb0dc986b..b409a8fbe 100644 --- a/src/java/com/threerings/presents/server/PresentsSession.java +++ b/src/java/com/threerings/presents/server/PresentsSession.java @@ -826,8 +826,10 @@ public class PresentsSession return _conn; } - /** Callable from non-dobjmgr thread, this queues up a runnable on the dobjmgr thread to post - * the supplied message to this client. */ + /** + * Callable from non-dobjmgr thread, this queues up a runnable on the dobjmgr thread to post + * the supplied message to this client. + */ protected final void safePostMessage (final DownstreamMessage msg) { _omgr.postRunnable(new Runnable() { @@ -838,7 +840,7 @@ public class PresentsSession } /** Queues a message for delivery to the client. */ - protected final boolean postMessage (DownstreamMessage msg) + protected boolean postMessage (DownstreamMessage msg) { Connection conn = getConnection(); if (conn != null) {