am 606726ba: Merge "Preventing null pointer crash when opening a folder" into ub-launcher3-burnaby

* commit '606726ba289583a67188d9448b220c2e3fae87d7':
  Preventing null pointer crash when opening a folder
This commit is contained in:
Sunny Goyal
2015-09-04 17:14:46 +00:00
committed by Android Git Automerger
+1 -1
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;
}
});
}