Mercurial > hg > RemoteEditor > REPSessionManager
changeset 340:f55843e829d6
*** empty log message ***
author | kono |
---|---|
date | Sun, 12 Oct 2008 20:03:47 +0900 |
parents | bb9e202af4d8 |
children | a9a740e685fa |
files | Todo rep/REPCommand.java |
diffstat | 2 files changed, 4 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/Todo Sun Oct 12 19:51:53 2008 +0900 +++ b/Todo Sun Oct 12 20:03:47 2008 +0900 @@ -40,7 +40,8 @@ 行番号0があるとだめらしい。 Todo: -manager.remove(editor) の動作のタイミング、 channel closeの扱い (kono) +manager.remove(editor) の動作のタイミング、 channel closeの扱い +たぶん、quit2のackで、殺すのが正しいと思う。(kono) Fri Oct 10 15:24:42 JST 2008
--- a/rep/REPCommand.java Sun Oct 12 19:51:53 2008 +0900 +++ b/rep/REPCommand.java Sun Oct 12 20:03:47 2008 +0900 @@ -46,7 +46,8 @@ public String toString(){ String repCmdString = cmd + ",sid=" + sid + ",eid=" + eid + ",seq=" + seq + - ",lineno=" + lineno + ",sz=" + string.length() + "," + string; + ",lineno=" + lineno ; + if (string!=null) repCmdString += ",sz=" + string.length() +"," + string; return repCmdString; }