Make getMailboxMessageSet private

This commit is contained in:
Manfred Karrer 2017-05-05 13:07:50 +02:00
parent 963494918d
commit 204385b4d9

View File

@ -461,7 +461,7 @@ public abstract class Trade implements Tradable, Model {
return errorMessageProperty;
}
public Set<DecryptedMsgWithPubKey> getMailboxMessageSet() {
private Set<DecryptedMsgWithPubKey> getMailboxMessageSet() {
if (mailboxMessageSet == null)
mailboxMessageSet = new HashSet<>();
return mailboxMessageSet;