1
0
mirror of https://github.com/moparisthebest/davmail synced 2025-01-12 22:18:11 -05:00

EWS: fix bug in MultiCondition search

git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@1114 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
mguessan 2010-06-30 21:59:56 +00:00
parent d7506d9f67
commit 6d2fecdd9a

View File

@ -627,7 +627,8 @@ public abstract class ExchangeSession {
protected MultiCondition(Operator operator, Condition... conditions) {
this.operator = operator;
this.conditions = Arrays.asList(conditions);
this.conditions = new ArrayList<Condition>();
this.conditions.addAll(Arrays.asList(conditions));
}
/**