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

This commit is contained in:
Ankit Tiwari committed 2021-10-15 23:10:38 +05:30
1 parent 2390568bdf
commit 993589427b
1 file changed
+1 -1
@@ -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