Skip to content

Commit be4e420

Browse files
committed
Style fix
1 parent 1e7e944 commit be4e420

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

substratevm/src/com.oracle.svm.hosted/src/com/oracle/svm/hosted/imagelayer/HostedImageLayerBuildingSupport.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ public static HostedImageLayerBuildingSupport initialize(HostedOptionValues valu
309309
}
310310

311311
record OptionLayerVerificationRequests(OptionDescriptor option, Map<LayerVerification.Kind, LayerVerification> requests) {
312-
public OptionLayerVerificationRequests(OptionDescriptor option) {
312+
OptionLayerVerificationRequests(OptionDescriptor option) {
313313
this(option, new HashMap<>());
314314
}
315315
}

substratevm/src/com.oracle.svm.hosted/src/com/oracle/svm/hosted/imagelayer/LoadLayerArchiveSupport.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848

4949
public class LoadLayerArchiveSupport extends LayerArchiveSupport {
5050

51+
@SuppressWarnings("this-escape")
5152
public LoadLayerArchiveSupport(String layerName, Path layerFile, Path tempDir, ArchiveSupport archiveSupport) {
5253
super(layerName, layerFile, tempDir.resolve(LAYER_TEMP_DIR_PREFIX + "load"), archiveSupport);
5354
this.archiveSupport.expandJarToDir(layerFile, layerDir);

0 commit comments

Comments
 (0)