Keep order of labels

This commit is contained in:
2017-03-30 16:31:36 +02:00
parent 3ab3d7a0ca
commit 5849e68d20
2 changed files with 6 additions and 6 deletions

View File

@ -543,7 +543,7 @@ public class Plaintext implements Streamable {
private long sent;
private Long received;
private Status status;
private Set<Label> labels = new HashSet<>();
private Set<Label> labels = new LinkedHashSet<>();
private long ttl;
private int retries;
private Long nextTry;