Skip to content

Commit

Permalink
Fix style.
Browse files Browse the repository at this point in the history
  • Loading branch information
axel22 committed Nov 3, 2020
1 parent fc003df commit c9845cf
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,10 @@ private static FrameSlotKind frameSlotKind(byte valueType) {
return null;
}

public void initStack(FrameDescriptor frameDescriptor, int maxStackSize) {
public void initStack(FrameDescriptor frameDescriptor, int maximumStackSize) {
int stackSlotIndex = localSlots.length;
this.stackSlot = frameDescriptor.addFrameSlot(stackSlotIndex, FrameSlotKind.Object);
this.maxStackSize = maxStackSize;
this.maxStackSize = maximumStackSize;
}

public int maxStackSize() {
Expand Down

0 comments on commit c9845cf

Please sign in to comment.