|
26 | 26 |
|
27 | 27 | package com.oracle.objectfile.debugentry; |
28 | 28 |
|
29 | | -import com.oracle.objectfile.debuginfo.DebugInfoProvider; |
| 29 | +import com.oracle.objectfile.debuginfo.DebugInfoProvider.DebugFieldInfo; |
30 | 30 | import com.oracle.objectfile.debuginfo.DebugInfoProvider.DebugFrameSizeChange; |
31 | 31 | import com.oracle.objectfile.debuginfo.DebugInfoProvider.DebugMethodInfo; |
32 | 32 | import com.oracle.objectfile.debuginfo.DebugInfoProvider.DebugTypeInfo; |
@@ -300,7 +300,7 @@ protected MethodEntry processMethod(DebugMethodInfo debugMethodInfo, DebugInfoBa |
300 | 300 | } |
301 | 301 |
|
302 | 302 | @Override |
303 | | - protected FieldEntry addField(DebugInfoProvider.DebugFieldInfo debugFieldInfo, DebugInfoBase debugInfoBase, DebugContext debugContext) { |
| 303 | + protected FieldEntry addField(DebugFieldInfo debugFieldInfo, DebugInfoBase debugInfoBase, DebugContext debugContext) { |
304 | 304 | FieldEntry fieldEntry = super.addField(debugFieldInfo, debugInfoBase, debugContext); |
305 | 305 | FileEntry fieldFileEntry = fieldEntry.getFileEntry(); |
306 | 306 | if (fieldFileEntry != null) { |
@@ -360,7 +360,7 @@ public Range makePrimaryRange(String methodName, String symbolName, String param |
360 | 360 | return new Range(symbolName, stringTable, method, fileEntryToUse, lo, hi, primaryLine); |
361 | 361 | } |
362 | 362 |
|
363 | | - public MethodEntry ensureMethodEntry(DebugInfoProvider.DebugMethodInfo debugMethodInfo, DebugInfoBase debugInfoBase, DebugContext debugContext) { |
| 363 | + public MethodEntry ensureMethodEntry(DebugMethodInfo debugMethodInfo, DebugInfoBase debugInfoBase, DebugContext debugContext) { |
364 | 364 | String methodName = debugInfoBase.uniqueDebugString(debugMethodInfo.name()); |
365 | 365 | String paramSignature = debugMethodInfo.paramSignature(); |
366 | 366 | String returnTypeName = debugMethodInfo.valueType(); |
|
0 commit comments