am 98fd6405: Merge "Fix NPEs when using the APIs a little oddly." into jb-dev
* commit '98fd6405aec16c6062f562bf6e7c5f2d50da5d60': Fix NPEs when using the APIs a little oddly.
This commit is contained in:
@@ -1367,7 +1367,9 @@ public class Notification implements Parcelable
|
||||
public Builder setStyle(Style style) {
|
||||
if (mStyle != style) {
|
||||
mStyle = style;
|
||||
mStyle.setBuilder(this);
|
||||
if (mStyle != null) {
|
||||
mStyle.setBuilder(this);
|
||||
}
|
||||
}
|
||||
return this;
|
||||
}
|
||||
@@ -1637,7 +1639,9 @@ public class Notification implements Parcelable
|
||||
public void setBuilder(Builder builder) {
|
||||
if (mBuilder != builder) {
|
||||
mBuilder = builder;
|
||||
mBuilder.setStyle(this);
|
||||
if (mBuilder != null) {
|
||||
mBuilder.setStyle(this);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user