Skip to content

Commit 3421432

Browse files
committed
typo fixed
1 parent e184e8d commit 3421432

File tree

1 file changed

+3
-3
lines changed
  • visualvm/heapviewer.truffle/src/org/graalvm/visualvm/heapviewer/truffle

1 file changed

+3
-3
lines changed

visualvm/heapviewer.truffle/src/org/graalvm/visualvm/heapviewer/truffle/TruffleFrame.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,9 @@ public TruffleFrame(Instance truffleFrame) {
7474
List<Instance> locals = getObjectArray(truffleFrame, "locals"); // NOI18N
7575
List<String> primitiveLocals = getPrimitiveArray(truffleFrame, "primitiveLocals"); // NOI18N
7676
List<Instance> arguments = getObjectArray(truffleFrame, "arguments"); // NOI18N
77-
Instance slotArr = getValueofFields(truffleFrame, "descriptor", "slots"); // NOI18N
77+
Instance slotArr = getValueOfFields(truffleFrame, "descriptor", "slots"); // NOI18N
7878
List<Instance> slots = getObjectArray(slotArr, "elementData"); // NOI18N
79-
Instance defaultValue = getValueofFields(truffleFrame, "descriptor", "defaultValue"); // NOI18N
79+
Instance defaultValue = getValueOfFields(truffleFrame, "descriptor", "defaultValue"); // NOI18N
8080

8181
if (locals != null && arguments != null && slots != null) {
8282
Instance[] frameSlots = createFrameSlots(slots, locals.size());
@@ -132,7 +132,7 @@ public static boolean isTruffleFrame(Instance truffleFrame) {
132132
return isTruffleFrameSubClass(truffleFrame);
133133
}
134134

135-
private static Instance getValueofFields(Instance instance, String... fields) {
135+
private static Instance getValueOfFields(Instance instance, String... fields) {
136136
if (instance != null) {
137137
for (String field : fields) {
138138
Object val = instance.getValueOfField(field);

0 commit comments

Comments
 (0)