35
35
import java .util .HashMap ;
36
36
import java .util .List ;
37
37
import java .util .Map ;
38
+ import java .util .Optional ;
38
39
import java .util .Properties ;
39
40
import java .util .ResourceBundle ;
40
41
import java .util .jar .Attributes ;
@@ -635,15 +636,13 @@ private jdk.jpackage.internal.Bundler getPlatformBundler() {
635
636
for (jdk .jpackage .internal .Bundler bundler :
636
637
Bundlers .createBundlersInstance ().getBundlers (bundleType )) {
637
638
if (type == null ) {
638
- if (bundler .isDefault ()
639
- && bundler .supported (runtimeInstaller )) {
640
- return bundler ;
641
- }
639
+ if (bundler .isDefault ()) {
640
+ return bundler ;
641
+ }
642
642
} else {
643
- if ((appImage || type .equalsIgnoreCase (bundler .getID ()))
644
- && bundler .supported (runtimeInstaller )) {
645
- return bundler ;
646
- }
643
+ if (appImage || type .equalsIgnoreCase (bundler .getID ())) {
644
+ return bundler ;
645
+ }
647
646
}
648
647
}
649
648
return null ;
@@ -652,8 +651,6 @@ private jdk.jpackage.internal.Bundler getPlatformBundler() {
652
651
private void generateBundle (Map <String ,? super Object > params )
653
652
throws PackagerException {
654
653
655
- boolean bundleCreated = false ;
656
-
657
654
// the temp dir needs to be fetched from the params early,
658
655
// to prevent each copy of the params (such as may be used for
659
656
// additional launchers) from generating a separate temp dir when
@@ -665,9 +662,10 @@ private void generateBundle(Map<String,? super Object> params)
665
662
// determine what bundler to run
666
663
jdk .jpackage .internal .Bundler bundler = getPlatformBundler ();
667
664
668
- if (bundler == null ) {
669
- throw new PackagerException ("ERR_InvalidInstallerType" ,
670
- deployParams .getTargetFormat ());
665
+ if (bundler == null || !bundler .supported (runtimeInstaller )) {
666
+ String type = Optional .ofNullable (bundler ).map (Bundler ::getID ).orElseGet (
667
+ () -> deployParams .getTargetFormat ());
668
+ throw new PackagerException ("ERR_InvalidInstallerType" , type );
671
669
}
672
670
673
671
Map <String , ? super Object > localParams = new HashMap <>(params );
0 commit comments