You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public static int[] msgSetToIds(final Set dcMsgs) {
int cnt = dcMsgs==null? 0 : dcMsgs.size(); // If dcMsgs is null, cnt is set to zero. See below.
int[] ids = new int[cnt];
int i = 0;
for (DcMsg dcMsg : dcMsgs) { // dcMsgs == null?
ids[i++] = dcMsg.getId();
}
return ids;
}
The text was updated successfully, but these errors were encountered:
deltachat-android/src/com/b44t/messenger/DcMsg.java
public static int[] msgSetToIds(final Set dcMsgs) {
int cnt = dcMsgs==null? 0 : dcMsgs.size(); // If dcMsgs is null, cnt is set to zero. See below.
int[] ids = new int[cnt];
int i = 0;
for (DcMsg dcMsg : dcMsgs) { // dcMsgs == null?
ids[i++] = dcMsg.getId();
}
return ids;
}
The text was updated successfully, but these errors were encountered: