1
1
package com .devonfw .tools .ide .tool ;
2
2
3
+ import static com .devonfw .tools .ide .tool .SecurityRiskInteractionAnswer .LATEST ;
3
4
import static com .devonfw .tools .ide .tool .SecurityRiskInteractionAnswer .LATEST_SAFE ;
4
5
import static com .devonfw .tools .ide .tool .SecurityRiskInteractionAnswer .NEXT_SAFE ;
5
- import static com .devonfw .tools .ide .tool .SecurityRiskInteractionAnswer .SAFE_LATEST ;
6
6
import static com .devonfw .tools .ide .tool .SecurityRiskInteractionAnswer .STAY ;
7
7
8
8
import java .io .IOException ;
14
14
import java .util .Map ;
15
15
import java .util .Set ;
16
16
import java .util .stream .Collectors ;
17
- import java .util .stream .Stream ;
18
17
19
- import com .devonfw .tools .ide .cli .CliException ;
20
18
import com .devonfw .tools .ide .commandlet .Commandlet ;
21
19
import com .devonfw .tools .ide .common .Tag ;
22
20
import com .devonfw .tools .ide .common .Tags ;
30
28
import com .devonfw .tools .ide .property .StringListProperty ;
31
29
import com .devonfw .tools .ide .url .model .file .UrlSecurityJsonFile ;
32
30
import com .devonfw .tools .ide .url .model .file .json .UrlSecurityWarning ;
33
- import com .devonfw .tools .ide .util .FilenameUtil ;
34
31
import com .devonfw .tools .ide .util .Pair ;
35
32
import com .devonfw .tools .ide .version .VersionIdentifier ;
36
33
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
-
43
34
/**
44
35
* {@link Commandlet} for a tool integrated into the IDE.
45
36
*/
@@ -268,7 +259,7 @@ private VersionIdentifier whichVersionDoYouWantToInstall(VersionIdentifier confi
268
259
Map <SecurityRiskInteractionAnswer , Pair <String , VersionIdentifier >> options = new HashMap <>();
269
260
options .put (STAY , Pair .of ("Stay with the current unsafe version (" + current + ")." , configuredVersion ));
270
261
options .put (LATEST_SAFE , Pair .of ("Install the latest of all safe versions (" + latestSafe + ")." , latestSafe ));
271
- options .put (SAFE_LATEST ,
262
+ options .put (LATEST ,
272
263
Pair .of ("Install the latest version (" + latest + "). This version is save." , VersionIdentifier .LATEST ));
273
264
options .put (NEXT_SAFE , Pair .of ("Install the next safe version (" + nextSafe + ")." , nextSafe ));
274
265
@@ -278,13 +269,13 @@ private VersionIdentifier whichVersionDoYouWantToInstall(VersionIdentifier confi
278
269
return getAnswer (options , currentIsUnsafe + "All newer versions are also not safe. " + ask , STAY , LATEST_SAFE );
279
270
} else if (nextSafe .equals (latest )) {
280
271
return getAnswer (options , currentIsUnsafe + "Of the newer versions, only the latest is safe. " + ask , STAY ,
281
- SAFE_LATEST );
272
+ LATEST );
282
273
} else if (nextSafe .equals (latestSafe )) {
283
274
return getAnswer (options , currentIsUnsafe + "Of the newer versions, only version " + nextSafe
284
275
+ " is safe, which is however not the latest. " + ask , STAY , NEXT_SAFE );
285
276
} else {
286
277
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 );
288
279
} else {
289
280
return getAnswer (options , currentIsUnsafe + ask , STAY , NEXT_SAFE , LATEST_SAFE );
290
281
}
@@ -445,11 +436,10 @@ public String getInstalledEdition(Path toolPath) {
445
436
}
446
437
return edition ;
447
438
} 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 );
453
443
}
454
444
455
445
}
0 commit comments