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