Actions
Bug #3461
openDF_002 - Logic
Bug #3461:
DF_002 - Logic
Status:
New
Priority:
Normal
Assignee:
-
Start date:
09/22/2025
Due date:
% Done:
0%
Estimated time:
Description
Line Number: 27-32
Description: must check null value before calling the function "openFile()".
Updated by Ha Long Ha about 1 month ago
Solution:
if (FilePath == null) {
System.out.println("Invalid file path");
return;
}
openFile(FilePath);
System.out.println("Processing file..");
Actions