(long group, long id)
| 215 | } |
| 216 | |
| 217 | private void cancel(long group, long id) { |
| 218 | // https://issuetracker.google.com/issues/159152393 |
| 219 | String tag = "unseen." + group + "." + id; |
| 220 | |
| 221 | NotificationManager nm = Helper.getSystemService(this, NotificationManager.class); |
| 222 | nm.cancel(tag, NotificationHelper.NOTIFICATION_TAGGED); |
| 223 | } |
| 224 | |
| 225 | private void onMove(long id, String folderType) { |
| 226 | DB db = DB.getInstance(this); |
no test coverage detected