Skip to content

Commit 2b75cae

Browse files
committed
Refactor: Make MethodEntry fields final
1 parent aaa9d5d commit 2b75cae

File tree

1 file changed

+2
-2
lines changed
  • substratevm/src/com.oracle.objectfile/src/com/oracle/objectfile/debugentry

1 file changed

+2
-2
lines changed

substratevm/src/com.oracle.objectfile/src/com/oracle/objectfile/debugentry/MethodEntry.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
package com.oracle.objectfile.debugentry;
2828

2929
public class MethodEntry extends MemberEntry {
30-
TypeEntry[] paramTypes;
31-
String[] paramNames;
30+
final TypeEntry[] paramTypes;
31+
final String[] paramNames;
3232
final boolean isDeoptTarget;
3333

3434
public MethodEntry(FileEntry fileEntry, String methodName, ClassEntry ownerType, TypeEntry valueType, TypeEntry[] paramTypes, String[] paramNames, int modifiers, boolean isDeoptTarget) {

0 commit comments

Comments
 (0)