Merge branch 'stable-2.16' into stable-3.0

* stable-2.16:
  HashtagsInput: Add a constructor allowing to initialize remove member
  Fix gr-identities styles

Change-Id: I5d44bbde7b44ae6e4c5969ca40c428d2cf8acbf0
This commit is contained in:
David Pursehouse
2019-07-31 09:01:50 +09:00
2 changed files with 47 additions and 32 deletions

View File

@@ -26,4 +26,9 @@ public class HashtagsInput {
public HashtagsInput(Set<String> add) {
this.add = add;
}
public HashtagsInput(Set<String> add, Set<String> remove) {
this(add);
this.remove = remove;
}
}