Merge "Preventing null pointer crash when opening a folder" into ub-launcher3-burnaby

This commit is contained in:
Sunny Goyal
2015-09-03 17:12:36 +00:00
committed by Android (Google) Code Review

View File

@@ -4089,7 +4089,7 @@ public class Workspace extends PagedView
@Override
public boolean evaluate(ItemInfo info, View v, View parent) {
return info.id == id;
return info != null && info.id == id;
}
});
}