Searched defs:mNotificationTempDeleted (Results 1 - 1 of 1) sorted by relevance

/packages/apps/UnifiedEmail/src/com/android/mail/browse/
H A DConversationCursor.java138 private final Set<Conversation> mNotificationTempDeleted = Sets.newHashSet(); field in class:ConversationCursor
2255 // Also, prevents ConcurrentModificationExceptions on mNotificationTempDeleted.
2259 final boolean changed = !mNotificationTempDeleted.isEmpty();
2261 for (final Conversation conversation : mNotificationTempDeleted) {
2265 mNotificationTempDeleted.clear();
2282 // Also, prevents ConcurrentModificationExceptions on mNotificationTempDeleted.
2313 if (!mNotificationTempDeleted.contains(conversation)) {
2315 mNotificationTempDeleted.add(conversation);
2325 final Iterator<Conversation> iterator = mNotificationTempDeleted.iterator();

Completed in 46 milliseconds