@@ -61,7 +61,7 @@ public class DynamicClassInfo extends ClassInfo {
61
61
private DynamicClassInfo superClass ; // Superclass as a DynamicClassInfo (just name not is inconvenient when multiple classloaders are used)
62
62
private String classFileLocation ; // Directory or .jar file where the .class file is located.
63
63
private int [] baseCPoolCount ;
64
- private int java_lang_ThowableCPIndex ; // constant pool index for java.lang.Throwable
64
+ private int java_lang_ThrowableCPIndex ; // constant pool index for java.lang.Throwable
65
65
private char [] instrMethodIds ; // Ids assigned to instrumented methods, 0 for uninstrumented methods
66
66
private DynamicClassInfo [] interfacesDCI ; // Ditto for superinterfaces
67
67
@@ -549,14 +549,14 @@ public void addGlobalCatchStackMapTableEntry(int methodIdx, int endPC) {
549
549
if (stackMapTableCPindex == 0 ) {
550
550
stackMapTableCPindex = getBaseCPoolCount (INJ_STACKMAP );
551
551
}
552
- if (java_lang_ThowableCPIndex == 0 ) {
553
- java_lang_ThowableCPIndex = getCPIndexOfClass ("java/lang/Throwable" ); // NOI18N
554
- if (java_lang_ThowableCPIndex == -1 ) {
555
- // LOG.finer("java/lang/Thowable not found in " + getName()); // NOI18N
556
- java_lang_ThowableCPIndex = getBaseCPoolCount (INJ_THROWABLE );
552
+ if (java_lang_ThrowableCPIndex == 0 ) {
553
+ java_lang_ThrowableCPIndex = getCPIndexOfClass ("java/lang/Throwable" ); // NOI18N
554
+ if (java_lang_ThrowableCPIndex == -1 ) {
555
+ // LOG.finer("java/lang/Throwable not found in " + getName()); // NOI18N
556
+ java_lang_ThrowableCPIndex = getBaseCPoolCount (INJ_THROWABLE );
557
557
}
558
558
}
559
- stacksCPIdx = new int [] {java_lang_ThowableCPIndex };
559
+ stacksCPIdx = new int [] {java_lang_ThrowableCPIndex };
560
560
if (!isStatic ) {
561
561
if (constructor ) {
562
562
localsCPIdx = new int [] {0 };
0 commit comments