Skip to content

Commit 52a2fcd

Browse files
committed
svm: fix formatting
1 parent 54de693 commit 52a2fcd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

substratevm/src/com.oracle.svm.core/src/com/oracle/svm/core/methodhandles/Target_java_lang_invoke_MethodTypeForm.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,16 +44,16 @@ final class Target_java_lang_invoke_MethodTypeForm {
4444
* writing.
4545
*/
4646
@Alias @RecomputeFieldValue(kind = Kind.Custom, declClass = NewEmptyArrayFieldValueTransformer.class, isFinal = true) //
47-
@TargetElement(onlyWith = JDKLatest.class)
47+
@TargetElement(onlyWith = JDKLatest.class) //
4848
private Object[] methodHandles;
4949
@Alias @RecomputeFieldValue(kind = Kind.Custom, declClass = NewEmptyArrayFieldValueTransformer.class, isFinal = true) //
50-
@TargetElement(onlyWith = JDKLatest.class)
50+
@TargetElement(onlyWith = JDKLatest.class) //
5151
private Object[] lambdaForms;
5252

5353
@Alias @RecomputeFieldValue(kind = Kind.Custom, declClass = NewEmptyArrayFieldValueTransformer.class, isFinal = true) //
54-
@TargetElement(name = "methodHandles", onlyWith = JDK21OrEarlier.class)
54+
@TargetElement(name = "methodHandles", onlyWith = JDK21OrEarlier.class) //
5555
private SoftReference<?>[] methodHandlesJDK21;
5656
@Alias @RecomputeFieldValue(kind = Kind.Custom, declClass = NewEmptyArrayFieldValueTransformer.class, isFinal = true) //
57-
@TargetElement(name = "lambdaForms", onlyWith = JDK21OrEarlier.class)
57+
@TargetElement(name = "lambdaForms", onlyWith = JDK21OrEarlier.class) //
5858
private SoftReference<?>[] lambdaFormsJDK21;
5959
}

0 commit comments

Comments
 (0)