()
| 214 | } |
| 215 | |
| 216 | @Override |
| 217 | public void refreshChat() { |
| 218 | this.singleChatLines.clear(); |
| 219 | this.resetScroll(); |
| 220 | |
| 221 | for (int i = this.chatLines.size() - 1; i >= 0; --i) { |
| 222 | GuiChatLine chatLine = this.chatLines.get(i); |
| 223 | this.setChatLine(chatLine.getChatComponent(), chatLine.getChatLineID(), chatLine.getUpdatedCounter(), true); |
| 224 | } |
| 225 | |
| 226 | } |
| 227 | |
| 228 | public List<String> getSentMessages() { |
| 229 | return this.sentMessages; |
nothing calls this directly
no test coverage detected