Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b8fd01da authored by Gitsaibot's avatar Gitsaibot Committed by Jochen Sprickerhof
Browse files

Simplify if statement

parent 8c8320ee
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -695,10 +695,7 @@ public class AllInOneActivity extends AbstractCalendarActivity implements EventH
     */
    public boolean isExternalStorageWritable() {
        String state = Environment.getExternalStorageState();
        if (Environment.MEDIA_MOUNTED.equals(state)) {
            return true;
        }
        return false;
        return Environment.MEDIA_MOUNTED.equals(state);
    }

    private void initFragments(long timeMillis, int viewType, Bundle icicle) {