Skip to content

Commit d6b6535

Browse files
committed
Refactor: Avoid Qualified types in ClassEntry
1 parent 5ae1ffd commit d6b6535

File tree

1 file changed

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

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
package com.oracle.objectfile.debugentry;
2828

29-
import com.oracle.objectfile.debuginfo.DebugInfoProvider;
29+
import com.oracle.objectfile.debuginfo.DebugInfoProvider.DebugFieldInfo;
3030
import com.oracle.objectfile.debuginfo.DebugInfoProvider.DebugFrameSizeChange;
3131
import com.oracle.objectfile.debuginfo.DebugInfoProvider.DebugMethodInfo;
3232
import com.oracle.objectfile.debuginfo.DebugInfoProvider.DebugTypeInfo;
@@ -300,7 +300,7 @@ protected MethodEntry processMethod(DebugMethodInfo debugMethodInfo, DebugInfoBa
300300
}
301301

302302
@Override
303-
protected FieldEntry addField(DebugInfoProvider.DebugFieldInfo debugFieldInfo, DebugInfoBase debugInfoBase, DebugContext debugContext) {
303+
protected FieldEntry addField(DebugFieldInfo debugFieldInfo, DebugInfoBase debugInfoBase, DebugContext debugContext) {
304304
FieldEntry fieldEntry = super.addField(debugFieldInfo, debugInfoBase, debugContext);
305305
FileEntry fieldFileEntry = fieldEntry.getFileEntry();
306306
if (fieldFileEntry != null) {
@@ -360,7 +360,7 @@ public Range makePrimaryRange(String methodName, String symbolName, String param
360360
return new Range(symbolName, stringTable, method, fileEntryToUse, lo, hi, primaryLine);
361361
}
362362

363-
public MethodEntry ensureMethodEntry(DebugInfoProvider.DebugMethodInfo debugMethodInfo, DebugInfoBase debugInfoBase, DebugContext debugContext) {
363+
public MethodEntry ensureMethodEntry(DebugMethodInfo debugMethodInfo, DebugInfoBase debugInfoBase, DebugContext debugContext) {
364364
String methodName = debugInfoBase.uniqueDebugString(debugMethodInfo.name());
365365
String paramSignature = debugMethodInfo.paramSignature();
366366
String returnTypeName = debugMethodInfo.valueType();

0 commit comments

Comments
 (0)