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

Commit fed93779 authored by Kenny Root's avatar Kenny Root Committed by Android (Google) Code Review
Browse files

Merge "Fix cast to String[] in FullBackupAgent"

parents 41207b6e a3639da4
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -48,7 +48,8 @@ public class FullBackupAgent extends BackupAgent {
        }

        // That's the file set; now back it all up
        FileBackupHelper helper = new FileBackupHelper(this, (String[])allFiles.toArray());
        FileBackupHelper helper = new FileBackupHelper(this,
                allFiles.toArray(new String[allFiles.size()]));
        helper.performBackup(oldState, data, newState);
    }