comparison rep/Editor.java @ 296:c35f01b5060f

*** empty log message ***
author pin
date Mon, 29 Sep 2008 14:46:30 +0900
parents 6deb6de8d0eb
children 8f6b7a1890b2
comparison
equal deleted inserted replaced
295:6deb6de8d0eb 296:c35f01b5060f
104 if(sentList.size() > 0){ 104 if(sentList.size() > 0){
105 if(sentList.get(0).seq == command.seq){ 105 if(sentList.get(0).seq == command.seq){
106 sentList.remove(0); 106 sentList.remove(0);
107 return true; 107 return true;
108 }else{ 108 }else{
109 System.err.println("error:Editor.checkReturnedCommand() : command = " + command); 109 System.err.println("Editor.checkReturnedCommand() : command = " + command);
110 System.out.println("Editor.checkReturndCommand() : sentList = " + sentList);
111 } 110 }
112 } 111 }
113 return false; 112 return false;
114 } 113 }
115 114