0
0
mirror of https://github.com/thunderbird/thunderbird-android.git synced 2024-09-20 12:12:15 +02:00

Remove unused ThreadInfo class

This commit is contained in:
Wolf-Martell Montwé 2024-01-02 15:29:27 +01:00
parent cba9ca31aa
commit 4fc07da370
No known key found for this signature in database
GPG Key ID: 6D45B21512ACBF72

View File

@ -1,17 +0,0 @@
package com.fsck.k9.mailstore;
public class ThreadInfo {
public final long threadId;
public final long msgId;
public final String messageId;
public final long rootId;
public final long parentId;
public ThreadInfo(long threadId, long msgId, String messageId, long rootId, long parentId) {
this.threadId = threadId;
this.msgId = msgId;
this.messageId = messageId;
this.rootId = rootId;
this.parentId = parentId;
}
}