Loading src/com/android/documentsui/dirlist/GridDocumentHolder.java +2 −2 Original line number Diff line number Diff line Loading @@ -299,8 +299,8 @@ final class GridDocumentHolder extends DocumentHolder { } } if (mBullet != null && (mDetails.getVisibility() == View.GONE || mDate.getText().isEmpty())) { if (mBullet != null && (mDetails.getText() == null || mDetails.getText().length() == 0 || mDate.getText() == null || mDate.getText().length() == 0)) { // There is no need for the bullet separating the details and date. mBullet.setVisibility(View.GONE); } Loading Loading
src/com/android/documentsui/dirlist/GridDocumentHolder.java +2 −2 Original line number Diff line number Diff line Loading @@ -299,8 +299,8 @@ final class GridDocumentHolder extends DocumentHolder { } } if (mBullet != null && (mDetails.getVisibility() == View.GONE || mDate.getText().isEmpty())) { if (mBullet != null && (mDetails.getText() == null || mDetails.getText().length() == 0 || mDate.getText() == null || mDate.getText().length() == 0)) { // There is no need for the bullet separating the details and date. mBullet.setVisibility(View.GONE); } Loading