Skip to content

Commit

Permalink
Fix spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
markro49 authored Dec 13, 2022
1 parent 6adcf5c commit 7ab26da
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
*
* // Create a map of Uninitialized_variable_info offsets to
* // InstructionHandles.
* buildUnitializedNewMap(il);
* buildUninitializedNewMap(il);
*
* This is where you would insert your code to modify the current method (mg).
* Most often this is done with members of the {@link org.apache.bcel.generic}
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/org/plumelib/bcelutil/StackMapUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ public StackMapUtils() {

/**
* A map from instructions that create uninitialized NEW objects to the corresponding StackMap
* entry. Set by buildUnitializedNewMap.
* entry. Set by buildUninitializedNewMap.
*/
private Map<InstructionHandle, Integer> uninitializedNewMap = new HashMap<>();

Expand Down Expand Up @@ -397,7 +397,7 @@ protected final void modifyStackMapsForSwitches(InstructionHandle ih, Instructio
*
* @param il instruction list to search
*/
protected final void buildUnitializedNewMap(InstructionList il) {
protected final void buildUninitializedNewMap(InstructionList il) {

uninitializedNewMap.clear();
il.setPositions();
Expand Down

0 comments on commit 7ab26da

Please sign in to comment.