Fix for bug modifying immutable list.
This commit is contained in:
parent
e8a0fac05b
commit
559228af5b
1 changed files with 1 additions and 1 deletions
|
@ -338,7 +338,7 @@ public class SessionRecordV2 extends Record {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
List<Chain.MessageKey> messageKeyList = chain.getMessageKeysList();
|
List<Chain.MessageKey> messageKeyList = new LinkedList<Chain.MessageKey>(chain.getMessageKeysList());
|
||||||
Iterator<Chain.MessageKey> messageKeyIterator = messageKeyList.iterator();
|
Iterator<Chain.MessageKey> messageKeyIterator = messageKeyList.iterator();
|
||||||
MessageKeys result = null;
|
MessageKeys result = null;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue