File tree Expand file tree Collapse file tree 2 files changed +0
-2
lines changed
main/java/org/springframework/context/aot
test/java/org/springframework/context/aot Expand file tree Collapse file tree 2 files changed +0
-2
lines changed Original file line number Diff line number Diff line change @@ -136,7 +136,6 @@ protected ClassNameGenerator createClassNameGenerator() {
136136 protected List <String > getDefaultNativeImageArguments (String applicationClassName ) {
137137 List <String > args = new ArrayList <>();
138138 args .add ("-H:Class=" + applicationClassName );
139- args .add ("--report-unsupported-elements-at-runtime" );
140139 args .add ("--no-fallback" );
141140 return args ;
142141 }
Original file line number Diff line number Diff line change @@ -111,7 +111,6 @@ private Consumer<Path> hasGeneratedAssetsForSampleApplication() {
111111 .resolve ("resource/META-INF/native-image/com.example/example/native-image.properties" );
112112 assertThat (nativeImagePropertiesFile ).exists ().isRegularFile ().hasContent ("""
113113 Args = -H:Class=org.springframework.context.aot.ContextAotProcessorTests$SampleApplication \\
114- --report-unsupported-elements-at-runtime \\
115114 --no-fallback
116115 """ );
117116 };
You can’t perform that action at this time.
0 commit comments