Changed password parameter to a char[] instead of null in ImportExportTest.java line 613

This commit is contained in:
Ankit Tiwari
2021-10-15 23:10:38 +05:30
parent 2390568bdf
commit 993589427b

View File

@@ -610,7 +610,7 @@ public class ImportExportTest
FileInputStream fileStream = new FileInputStream(exportFile);
task = new ImportExportTask(activity, DataFormat.Catima, fileStream, null, listener);
task = new ImportExportTask(activity, DataFormat.Catima, fileStream, password.toCharArray(), listener);
task.execute();
// Actually run the task to completion