Fixed some warnings

pull/214/head
M66B 5 months ago
parent a03248ea85
commit 7634cddd85

@ -6772,7 +6772,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
for (EntityMessage m : db.message().getMessagesByMsgId(message.account, ref))
map.put(m.msgid, m);
return new ArrayList(map.values());
return new ArrayList<>(map.values());
}
@Override
@ -7466,7 +7466,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
new SimpleTask<Void>() {
@Override
protected Void onExecute(Context context, Bundle args) {
Long id = args.getLong("id");
long id = args.getLong("id");
DB db = DB.getInstance(context);
try {

Loading…
Cancel
Save