static L getChatHistory() { new L lines; while (true) { S line = suckFromChat(); if (line == null) return lines; lines.add(line); if (line.length() == 0) break; } return lines; }