summaryrefslogtreecommitdiffstats
path: root/src/com/android
diff options
context:
space:
mode:
authorScott Kennedy <skennedy@google.com>2013-05-22 16:51:07 -0700
committerScott Kennedy <skennedy@google.com>2013-05-22 16:51:07 -0700
commit5b582622b8e98cd4d47274df8a7a0b56d8f595f8 (patch)
tree745186424f24669198a9d85a6e761a2888cf5fdd /src/com/android
parentb7abeadc21b37a0c43517546444118f799f76e7c (diff)
downloadandroid_packages_apps_UnifiedEmail-5b582622b8e98cd4d47274df8a7a0b56d8f595f8.tar.gz
android_packages_apps_UnifiedEmail-5b582622b8e98cd4d47274df8a7a0b56d8f595f8.tar.bz2
android_packages_apps_UnifiedEmail-5b582622b8e98cd4d47274df8a7a0b56d8f595f8.zip
Remove some unused code
Change-Id: I5af4c4e7d8207ebc5418e9f9f3339554146836be
Diffstat (limited to 'src/com/android')
-rw-r--r--src/com/android/mail/utils/NotificationUtils.java48
1 files changed, 0 insertions, 48 deletions
diff --git a/src/com/android/mail/utils/NotificationUtils.java b/src/com/android/mail/utils/NotificationUtils.java
index de4d8878f..7c1a362a1 100644
--- a/src/com/android/mail/utils/NotificationUtils.java
+++ b/src/com/android/mail/utils/NotificationUtils.java
@@ -32,13 +32,10 @@ import android.provider.ContactsContract;
import android.provider.ContactsContract.CommonDataKinds.Email;
import android.provider.ContactsContract.Contacts.Photo;
import android.support.v4.app.NotificationCompat;
-import android.text.Html;
import android.text.Spannable;
import android.text.SpannableString;
import android.text.SpannableStringBuilder;
-import android.text.Spanned;
import android.text.TextUtils;
-import android.text.TextUtils.SimpleStringSplitter;
import android.text.style.CharacterStyle;
import android.text.style.TextAppearanceSpan;
import android.util.Pair;
@@ -64,7 +61,6 @@ import com.google.android.common.html.parser.HtmlDocument;
import com.google.android.common.html.parser.HtmlTree;
import com.google.common.base.Objects;
import com.google.common.collect.Lists;
-import com.google.common.collect.Maps;
import com.google.common.collect.Sets;
import java.io.ByteArrayInputStream;
@@ -73,7 +69,6 @@ import java.util.Arrays;
import java.util.Collection;
import java.util.Deque;
import java.util.List;
-import java.util.Map;
import java.util.Set;
import java.util.concurrent.ConcurrentHashMap;
@@ -88,11 +83,6 @@ public class NotificationUtils {
private static TextAppearanceSpan sNotificationUnreadStyleSpan;
private static CharacterStyle sNotificationReadStyleSpan;
- private static final Map<Integer, Integer> sPriorityToLength = Maps.newHashMap();
- private static final SimpleStringSplitter SENDER_LIST_SPLITTER =
- new SimpleStringSplitter(Utils.SENDER_LIST_SEPARATOR);
- private static String[] sSenderFragments = new String[8];
-
/** A factory that produces a plain text converter that removes elided text. */
private static final HtmlTree.PlainTextConverterFactory MESSAGE_CONVERTER_FACTORY =
new HtmlTree.PlainTextConverterFactory() {
@@ -1205,44 +1195,6 @@ public class NotificationUtils {
}
/**
- * Adds a fragment with given style to a string builder.
- *
- * @param builder the current string builder
- * @param fragment the fragment to be added
- * @param style the style of the fragment
- * @param withSpaces whether to add the whole fragment or to divide it into
- * smaller ones
- */
- private static void addStyledFragment(SpannableStringBuilder builder, String fragment,
- CharacterStyle style, boolean withSpaces) {
- if (withSpaces) {
- int pos = builder.length();
- builder.append(fragment);
- builder.setSpan(CharacterStyle.wrap(style), pos, builder.length(),
- Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
- } else {
- int start = 0;
- while (true) {
- int pos = fragment.substring(start).indexOf(' ');
- if (pos == -1) {
- addStyledFragment(builder, fragment.substring(start), style, true);
- break;
- } else {
- pos += start;
- if (start < pos) {
- addStyledFragment(builder, fragment.substring(start, pos), style, true);
- builder.append(' ');
- }
- start = pos + 1;
- if (start >= fragment.length()) {
- break;
- }
- }
- }
- }
- }
-
- /**
* Clears the notifications for the specified account/folder/conversation.
*/
public static void clearFolderNotification(Context context, Account account, Folder folder) {