OSDN Git Service

Don't try and trim null strings.
authorWinson Chung <winsonc@google.com>
Fri, 15 May 2015 19:04:03 +0000 (12:04 -0700)
committerWinson Chung <winsonc@google.com>
Fri, 15 May 2015 19:07:51 +0000 (19:07 +0000)
Bug: 21161481

src/com/android/launcher3/Utilities.java

index f3435fc..6734fdc 100644 (file)
@@ -627,6 +627,10 @@ public final class Utilities {
      * Non-breaking whitespaces are also removed.
      */
     public static String trim(CharSequence s) {
+        if (s == null) {
+            return null;
+        }
+
         // Just strip any sequence of whitespace or java space characters from the beginning and end
         Matcher m = sTrimPattern.matcher(s);
         return m.replaceAll("$1");