Skip to content

Commit c4c5130

Browse files
Fix style issues, Add native image config for runtimedebuginfotest
1 parent 06ef6ab commit c4c5130

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

substratevm/src/com.oracle.svm.core/src/com/oracle/svm/core/debug/GDBJITInterface.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public List<String> getHeaderFiles() {
6565
}
6666
}
6767

68-
private static class IncludeForRuntimeDebugOnly implements BooleanSupplier {
68+
private static final class IncludeForRuntimeDebugOnly implements BooleanSupplier {
6969
@Override
7070
public boolean getAsBoolean() {
7171
return SubstrateOptions.RuntimeDebugInfo.getValue();

substratevm/src/com.oracle.svm.core/src/com/oracle/svm/core/debug/SharedDebugInfoProvider.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -162,9 +162,8 @@
162162
* which is further composed of:
163163
* <ul>
164164
* <li>{@link LeafRange}: A leaf in the {@link CompilationResultFrameTree}.</li>
165-
* <li>{@link CallRange}: A {@link CompilationResultFrameTree.CallNode CallNode} in the
166-
* {@link CompilationResultFrameTree}. Represents inlined calls and is therefore itself composed of
167-
* ranges.</li>
165+
* <li>{@link CallRange}: A {@code CallNode} in the {@link CompilationResultFrameTree}. Represents
166+
* inlined calls and is therefore itself composed of ranges.</li>
168167
* </ul>
169168
* </li>
170169
* </ul>

substratevm/src/com.oracle.svm.hosted/src/com/oracle/svm/hosted/image/NativeImageDebugInfoProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,7 @@ public boolean isVirtual(SharedMethod method) {
502502
}
503503

504504
/**
505-
* Fetch a methods symbol produced by the {@link BFDNameProvider}
505+
* Fetch a methods symbol produced by the {@link BFDNameProvider}.
506506
*
507507
* @param method method to get the symbol name for
508508
* @return symbol name of the method

0 commit comments

Comments
 (0)