Remove unused methods from LegacyJsonThreadStore

This commit is contained in:
AsamK 2020-03-24 19:30:21 +01:00
parent 5df8f32820
commit d50dc69f08

View file

@ -27,14 +27,6 @@ public class LegacyJsonThreadStore {
@JsonDeserialize(using = ThreadsDeserializer.class)
private Map<String, ThreadInfo> threads = new HashMap<>();
public void updateThread(ThreadInfo thread) {
threads.put(thread.id, thread);
}
public ThreadInfo getThread(String id) {
return threads.get(id);
}
public List<ThreadInfo> getThreads() {
return new ArrayList<>(threads.values());
}