Merge "WallpaperService crashes becuase of a log statement" into sc-dev
This commit is contained in:
@@ -776,8 +776,10 @@ public abstract class WallpaperService extends Service {
|
|||||||
WallpaperColors color = colors.get(i);
|
WallpaperColors color = colors.get(i);
|
||||||
RectF area = regions.get(i);
|
RectF area = regions.get(i);
|
||||||
if (color == null || area == null) {
|
if (color == null || area == null) {
|
||||||
Log.wtf(TAG, "notifyLocalColorsChanged null values. color: "
|
if (DEBUG) {
|
||||||
+ color + " area " + area);
|
Log.e(TAG, "notifyLocalColorsChanged null values. color: "
|
||||||
|
+ color + " area " + area);
|
||||||
|
}
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
|
|||||||
Reference in New Issue
Block a user