File tree Expand file tree Collapse file tree 1 file changed +1
-22
lines changed
src/jdk.jpackage/macosx/classes/jdk/jpackage/internal Expand file tree Collapse file tree 1 file changed +1
-22
lines changed Original file line number Diff line number Diff line change 28
28
import static jdk .jpackage .internal .MacAppImageBuilder .APP_STORE ;
29
29
import static jdk .jpackage .internal .MacBaseInstallerBundler .SIGNING_KEYCHAIN ;
30
30
import static jdk .jpackage .internal .MacBaseInstallerBundler .SIGNING_KEY_USER ;
31
- import static jdk .jpackage .internal .StandardBundlerParam .MAIN_CLASS ;
31
+ import static jdk .jpackage .internal .StandardBundlerParam .OUTPUT_DIR ;
32
32
import static jdk .jpackage .internal .StandardBundlerParam .SIGN_BUNDLE ;
33
33
import static jdk .jpackage .internal .StandardBundlerParam .VERSION ;
34
- import static jdk .jpackage .internal .StandardBundlerParam .OUTPUT_DIR ;
35
34
36
35
import java .text .MessageFormat ;
37
36
import java .util .Map ;
@@ -86,26 +85,6 @@ public MacAppBundler() {
86
85
},
87
86
(s , p ) -> s );
88
87
89
- public static final BundlerParamInfo <String > APP_IMAGE_SIGN_IDENTITY =
90
- new BundlerParamInfo <>(
91
- Arguments .CLIOptions .MAC_APP_IMAGE_SIGN_IDENTITY .getId (),
92
- String .class ,
93
- params -> "" ,
94
- null );
95
-
96
- static String getIdentifier (Map <String , ? super Object > params ) {
97
- String s = MAIN_CLASS .fetchFrom (params );
98
- if (s == null ) {
99
- return null ;
100
- }
101
-
102
- int idx = s .lastIndexOf ("." );
103
- if (idx >= 1 ) {
104
- return s .substring (0 , idx );
105
- }
106
- return s ;
107
- }
108
-
109
88
private static void doValidate (Map <String , ? super Object > params )
110
89
throws ConfigException {
111
90
You can’t perform that action at this time.
0 commit comments