Skip to content

Commit 3e090a9

Browse files
committed
unused parameter removed
1 parent ff7bca6 commit 3e090a9

File tree

1 file changed

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

1 file changed

+3
-3
lines changed

visualvm/heapviewer.truffle/src/org/graalvm/visualvm/heapviewer/truffle/dynamicobject/DynamicObject.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -841,7 +841,7 @@ private FieldValue getObfuscatedEnperpriseValue(Instance loc, String className,
841841
Instance actualLoc = (Instance) loc.getValueOfField("arrayLocation"); // NOI18N
842842
Boolean allowInt = (Boolean) loc.getValueOfField("allowInt"); // NOI18N
843843

844-
return getObfuscatedEnterpriseArrayLocation(dynamicObject, loc, index, actualLoc, allowInt);
844+
return getObfuscatedEnterpriseArrayLocation(dynamicObject, index, actualLoc, allowInt);
845845
}
846846
if (loc.getValueOfField("index") != null && loc.getValueOfField("offset") != null) { // NOI18N
847847
Integer index = (Integer)loc.getValueOfField("index"); // NOI18N
@@ -897,7 +897,7 @@ private FieldValue getObfuscatedEnperpriseValue(Instance loc, String className,
897897
}
898898
}
899899
if (locIndex != null && locArrayLocation != null) {
900-
return getObfuscatedEnterpriseArrayLocation(dynamicObject, loc, locIndex, locArrayLocation, locAllowInt);
900+
return getObfuscatedEnterpriseArrayLocation(dynamicObject, locIndex, locArrayLocation, locAllowInt);
901901
}
902902
}
903903
if (fields.size() == 1) {
@@ -909,7 +909,7 @@ private FieldValue getObfuscatedEnperpriseValue(Instance loc, String className,
909909
return null;
910910
}
911911

912-
private FieldValue getObfuscatedEnterpriseArrayLocation(Instance dynamicObject, Instance loc, Integer index, Instance actualLoc, Boolean allowInt) {
912+
private FieldValue getObfuscatedEnterpriseArrayLocation(Instance dynamicObject, Integer index, Instance actualLoc, Boolean allowInt) {
913913
ObjectFieldValue arrayVal = (ObjectFieldValue) getValueImpl(actualLoc, dynamicObject);
914914
Instance array = arrayVal.getInstance();
915915
if (array instanceof PrimitiveArrayInstance) {

0 commit comments

Comments
 (0)