---
fix up
This commit is contained in:
aalehin 2023-05-30 17:44:25 +03:00
parent 0c8fec38dc
commit 1e1c4f5526

View file

@ -41,7 +41,7 @@ public class FileChecker {
private List<File> lsSWT(String swtDirPath) {
File swtDir = new File(swtDirPath);
File[] swtFiles = swtDir.listFiles((dir, name) -> {
String offsetName = name.substring(0, 9);
String offsetName = name.length() > 10 ? name.substring(0, 9) : "";
return offsetName.equalsIgnoreCase("RDC_KS_DF");
});