no message

This commit is contained in:
2024-10-07 17:46:38 +03:00
parent 6537eebe09
commit e7f661f7ad
87 changed files with 279 additions and 222 deletions

View File

@@ -247,7 +247,7 @@ public class ComponentsServer extends RepositoryServer<BugReportsDatabase> {
for (String sType : types) {
ComponentType componentType = ComponentType.valueOf(sType);
File vFile = Paths.get(Global.Home, "Components", sType, "version.txt").toFile();
String v_string = Utils.remove(
String v_string = CommonUtils.removeCharacters(
Utils.ReadAllText(vFile),
"\n", "\r"
);
@@ -263,7 +263,7 @@ public class ComponentsServer extends RepositoryServer<BugReportsDatabase> {
for (String sType : types_) {
ComponentType componentType = ComponentType.valueOf(sType);
File vFile = Paths.get(Global.Home, "Components", sType, "minimal_version.txt").toFile();
String mv_string = Utils.remove(
String mv_string = CommonUtils.removeCharacters(
Utils.ReadAllText(vFile),
"\n", "\r"
);