@@ -397,7 +397,7 @@ public void updateTable(int injectionPos, int injectedBytesCount, int methodIdx,
397
397
offsetAdjusted = true ;
398
398
}
399
399
}
400
- frame .updateUnitilializedList (injectionPos , injectedBytesCount , changeTypeIsInjectNewInstr , injectionBindsToFollowingInstruction );
400
+ frame .updateUninitializedList (injectionPos , injectedBytesCount , changeTypeIsInjectNewInstr , injectionBindsToFollowingInstruction );
401
401
}
402
402
}
403
403
}
@@ -605,7 +605,7 @@ private int getVerificationTypeInfoSize(byte type) {
605
605
case 3 : // ITEM_Double
606
606
case 4 : // ITEM_Long
607
607
case 5 : // ITEM_Null
608
- case 6 : // ITEM_UnitializedThis
608
+ case 6 : // ITEM_UninitializedThis
609
609
return 1 ;
610
610
case 7 : // ITEM_Object
611
611
case 8 : // ITEM_Uninitialized
@@ -629,7 +629,7 @@ private void setOffsetDelta(int newOffsetDelta) {
629
629
modified = true ;
630
630
}
631
631
632
- private void updateUnitilializedList (int injectionPos , int injectedBytesCount , boolean changeTypeIsInjectNewInstr , boolean injectionBindsToFollowingInstruction ) {
632
+ private void updateUninitializedList (int injectionPos , int injectedBytesCount , boolean changeTypeIsInjectNewInstr , boolean injectionBindsToFollowingInstruction ) {
633
633
if (uninitializedList != null ) {
634
634
for (int i = 0 ; i <uninitializedList .size ();i ++) {
635
635
Integer off = uninitializedList .get (i );
@@ -646,15 +646,15 @@ private void updateUnitilializedList(int injectionPos, int injectedBytesCount, b
646
646
647
647
private void storeUninitializedVariableInfo (byte [] buffer , int offset , int listIndex ) {
648
648
byte type = buffer [offset ++];
649
- if (type == 8 ) { // ITEM_Unitialized
649
+ if (type == 8 ) { // ITEM_Uninitialized
650
650
if (uninitializedList == null ) {
651
651
uninitializedList = new ArrayList ();
652
652
}
653
653
while (uninitializedList .size () < listIndex +1 ) {
654
654
uninitializedList .add (null );
655
655
}
656
656
uninitializedList .set (listIndex ,Integer .valueOf (getU2 (buffer ,offset )));
657
- // LOG.finer("ITEM_Unitialized "+Integer.valueOf(getU2(buffer,offset)));
657
+ // LOG.finer("ITEM_Uninitialized "+Integer.valueOf(getU2(buffer,offset)));
658
658
}
659
659
}
660
660
@@ -701,7 +701,7 @@ void writeFrame(byte[] ret, int newFrameOffset) {
701
701
byte type = ret [offset ];
702
702
int typeInfoSize = getVerificationTypeInfoSize (type );
703
703
704
- if (type == 8 ) { // ITEM_Unitialized
704
+ if (type == 8 ) { // ITEM_Uninitialized
705
705
putU2 (ret ,offset +1 ,off .intValue ());
706
706
}
707
707
offset += typeInfoSize ;
@@ -718,7 +718,7 @@ void writeFrame(byte[] ret, int newFrameOffset) {
718
718
byte type = ret [offset ];
719
719
int typeInfoSize = getVerificationTypeInfoSize (type );
720
720
721
- if (type == 8 ) { // ITEM_Unitialized
721
+ if (type == 8 ) { // ITEM_Uninitialized
722
722
putU2 (ret ,offset +1 ,uninitializedList .get (i ).intValue ());
723
723
}
724
724
offset += typeInfoSize ;
@@ -730,7 +730,7 @@ void writeFrame(byte[] ret, int newFrameOffset) {
730
730
byte type = ret [offset ];
731
731
int typeInfoSize = getVerificationTypeInfoSize (type );
732
732
733
- if (type == 8 ) { // ITEM_Unitialized
733
+ if (type == 8 ) { // ITEM_Uninitialized
734
734
putU2 (ret ,offset +1 ,uninitializedList .get (locals +i ).intValue ());
735
735
}
736
736
offset += typeInfoSize ;
0 commit comments