Bug 895702 - Remove unnecessary bytes length check. r=rnewman

This commit is contained in:
Brian Nicholson 2013-07-29 16:32:01 -04:00
parent e27d00ab92
commit bc771fffd2

View File

@ -120,7 +120,7 @@ abstract class HomeFragment extends Fragment {
// FIXME: bug 897772
Bitmap bitmap = null;
if (info.favicon != null && info.favicon.length > 0) {
if (info.favicon != null) {
bitmap = BitmapUtils.decodeByteArray(info.favicon);
}