no message

This commit is contained in:
2024-10-07 22:04:09 +03:00
parent 7fac84740d
commit 17c0bf7eb3
103 changed files with 560 additions and 491 deletions

View File

@@ -1,12 +1,12 @@
package Repository.Component;
import _VisualDVM.Global;
import Common.Utils.CommonUtils;
public abstract class OSDComponent extends Component {
@Override
public String getFileName() {
return getComponentType().toString() + (Global.isWindows ? ".exe" : "");
return getComponentType().toString() + (CommonUtils.isWindows ? ".exe" : "");
}
@Override
public String getNewFileName() {
return getComponentType().toString() + "_new" + (Global.isWindows ? ".exe" : "");
return getComponentType().toString() + "_new" + (CommonUtils.isWindows ? ".exe" : "");
}
}