()
| 205 | } |
| 206 | |
| 207 | @Override |
| 208 | public void refreshChat() { |
| 209 | this.singleChatLines.clear(); |
| 210 | this.resetScroll(); |
| 211 | |
| 212 | for (int i = this.chatLines.size() - 1; i >= 0; --i) { |
| 213 | GuiChatLine chatLine = this.chatLines.get(i); |
| 214 | this.setChatLine(chatLine.getChatComponent(), chatLine.getChatLineID(), chatLine.getUpdatedCounter(), true); |
| 215 | } |
| 216 | |
| 217 | } |
| 218 | |
| 219 | public List<String> getSentMessages() { |
| 220 | return this.sentMessages; |
nothing calls this directly
no test coverage detected