diff options
| author | 2018-09-11 10:16:45 -0700 | |
|---|---|---|
| committer | 2018-09-11 10:16:45 -0700 | |
| commit | 67dffedd92829b5293d0f3d859f413eeca2ed5f5 (patch) | |
| tree | 4f5c3e0f0acf63a76c89aedf0b056b5025cd5a74 | |
| parent | adc5c93c17342aaf4c96bf40a9e374ecef90d6b5 (diff) | |
| parent | 98627fa455f34da2791d2d65e30d38e87bee3022 (diff) | |
Merge "Framework: Remove a nonsensical substring(0)"
am: 98627fa455
Change-Id: Iede6825cef351b4021dc1166b262124cefdfdca2
| -rw-r--r-- | core/java/android/appwidget/AppWidgetProviderInfo.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/appwidget/AppWidgetProviderInfo.java b/core/java/android/appwidget/AppWidgetProviderInfo.java index 53315cce82dd..d148afb32b02 100644 --- a/core/java/android/appwidget/AppWidgetProviderInfo.java +++ b/core/java/android/appwidget/AppWidgetProviderInfo.java @@ -400,7 +400,7 @@ public class AppWidgetProviderInfo implements Parcelable { that.initialLayout = this.initialLayout; that.initialKeyguardLayout = this.initialKeyguardLayout; that.configure = this.configure == null ? null : this.configure.clone(); - that.label = this.label == null ? null : this.label.substring(0); + that.label = this.label; that.icon = this.icon; that.previewImage = this.previewImage; that.autoAdvanceViewId = this.autoAdvanceViewId; |