Skip to content

Commit 998387d

Browse files
devonfw#103 implemented requested changes
renamed SAFE_LATEST to LATEST
1 parent d794e67 commit 998387d

File tree

2 files changed

+10
-20
lines changed

2 files changed

+10
-20
lines changed

cli/src/main/java/com/devonfw/tools/ide/tool/SecurityRiskInteractionAnswer.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ public enum SecurityRiskInteractionAnswer {
1717
LATEST_SAFE,
1818

1919
/**
20-
* User answer to use the latest safe version.
20+
* User answer to use the latest version.
2121
*/
22-
SAFE_LATEST,
22+
LATEST,
2323

2424
/**
2525
* User answer to use the next safe version.

cli/src/main/java/com/devonfw/tools/ide/tool/ToolCommandlet.java

+8-18
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package com.devonfw.tools.ide.tool;
22

3+
import static com.devonfw.tools.ide.tool.SecurityRiskInteractionAnswer.LATEST;
34
import static com.devonfw.tools.ide.tool.SecurityRiskInteractionAnswer.LATEST_SAFE;
45
import static com.devonfw.tools.ide.tool.SecurityRiskInteractionAnswer.NEXT_SAFE;
5-
import static com.devonfw.tools.ide.tool.SecurityRiskInteractionAnswer.SAFE_LATEST;
66
import static com.devonfw.tools.ide.tool.SecurityRiskInteractionAnswer.STAY;
77

88
import java.io.IOException;
@@ -14,9 +14,7 @@
1414
import java.util.Map;
1515
import java.util.Set;
1616
import java.util.stream.Collectors;
17-
import java.util.stream.Stream;
1817

19-
import com.devonfw.tools.ide.cli.CliException;
2018
import com.devonfw.tools.ide.commandlet.Commandlet;
2119
import com.devonfw.tools.ide.common.Tag;
2220
import com.devonfw.tools.ide.common.Tags;
@@ -30,16 +28,9 @@
3028
import com.devonfw.tools.ide.property.StringListProperty;
3129
import com.devonfw.tools.ide.url.model.file.UrlSecurityJsonFile;
3230
import com.devonfw.tools.ide.url.model.file.json.UrlSecurityWarning;
33-
import com.devonfw.tools.ide.util.FilenameUtil;
3431
import com.devonfw.tools.ide.util.Pair;
3532
import com.devonfw.tools.ide.version.VersionIdentifier;
3633

37-
import java.io.IOException;
38-
import java.nio.file.Files;
39-
import java.nio.file.Path;
40-
import java.util.List;
41-
import java.util.Set;
42-
4334
/**
4435
* {@link Commandlet} for a tool integrated into the IDE.
4536
*/
@@ -268,7 +259,7 @@ private VersionIdentifier whichVersionDoYouWantToInstall(VersionIdentifier confi
268259
Map<SecurityRiskInteractionAnswer, Pair<String, VersionIdentifier>> options = new HashMap<>();
269260
options.put(STAY, Pair.of("Stay with the current unsafe version (" + current + ").", configuredVersion));
270261
options.put(LATEST_SAFE, Pair.of("Install the latest of all safe versions (" + latestSafe + ").", latestSafe));
271-
options.put(SAFE_LATEST,
262+
options.put(LATEST,
272263
Pair.of("Install the latest version (" + latest + "). This version is save.", VersionIdentifier.LATEST));
273264
options.put(NEXT_SAFE, Pair.of("Install the next safe version (" + nextSafe + ").", nextSafe));
274265

@@ -278,13 +269,13 @@ private VersionIdentifier whichVersionDoYouWantToInstall(VersionIdentifier confi
278269
return getAnswer(options, currentIsUnsafe + "All newer versions are also not safe. " + ask, STAY, LATEST_SAFE);
279270
} else if (nextSafe.equals(latest)) {
280271
return getAnswer(options, currentIsUnsafe + "Of the newer versions, only the latest is safe. " + ask, STAY,
281-
SAFE_LATEST);
272+
LATEST);
282273
} else if (nextSafe.equals(latestSafe)) {
283274
return getAnswer(options, currentIsUnsafe + "Of the newer versions, only version " + nextSafe
284275
+ " is safe, which is however not the latest. " + ask, STAY, NEXT_SAFE);
285276
} else {
286277
if (latestSafe.equals(latest)) {
287-
return getAnswer(options, currentIsUnsafe + ask, STAY, NEXT_SAFE, SAFE_LATEST);
278+
return getAnswer(options, currentIsUnsafe + ask, STAY, NEXT_SAFE, LATEST);
288279
} else {
289280
return getAnswer(options, currentIsUnsafe + ask, STAY, NEXT_SAFE, LATEST_SAFE);
290281
}
@@ -445,11 +436,10 @@ public String getInstalledEdition(Path toolPath) {
445436
}
446437
return edition;
447438
} catch (IOException e) {
448-
throw new IllegalStateException(
449-
"Couldn't determine the edition of " + getName() + " from the directory structure of its software path "
450-
+ toolPath
451-
+ ", assuming the name of the parent directory of the real path of the software path to be the edition "
452-
+ "of the tool.", e);
439+
throw new IllegalStateException("Couldn't determine the edition of " + getName()
440+
+ " from the directory structure of its software path " + toolPath
441+
+ ", assuming the name of the parent directory of the real path of the software path to be the edition "
442+
+ "of the tool.", e);
453443
}
454444

455445
}

0 commit comments

Comments
 (0)