File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
substratevm/src/com.oracle.svm.hosted/src/com/oracle/svm/hosted Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change 108
108
import jdk .graal .compiler .options .Option ;
109
109
import jdk .graal .compiler .options .OptionType ;
110
110
import jdk .graal .compiler .phases .util .Providers ;
111
- import jdk .graal .compiler .util .json .JsonPrettyWriter ;
112
111
import jdk .graal .compiler .util .json .JsonWriter ;
113
112
import jdk .vm .ci .meta .ResolvedJavaMethod ;
114
113
@@ -639,7 +638,7 @@ public void afterAnalysis(AfterAnalysisAccess access) {
639
638
sealed = true ;
640
639
if (Options .GenerateEmbeddedResourcesFile .getValue ()) {
641
640
Path reportLocation = NativeImageGenerator .generatedFiles (HostedOptionValues .singleton ()).resolve (Options .EMBEDDED_RESOURCES_FILE_NAME );
642
- try (JsonWriter writer = new JsonPrettyWriter (reportLocation )) {
641
+ try (JsonWriter writer = new JsonWriter (reportLocation )) {
643
642
EmbeddedResourceExporter .printReport (writer );
644
643
} catch (IOException e ) {
645
644
throw VMError .shouldNotReachHere ("Json writer cannot write to: " + reportLocation , e );
You can’t perform that action at this time.
0 commit comments