mirror of
https://github.com/aljazceru/signal-cli.git
synced 2025-12-29 12:04:20 +01:00
Remove unused methods from LegacyJsonThreadStore
This commit is contained in:
@@ -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());
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user