File tree Expand file tree Collapse file tree 4 files changed +7
-2
lines changed
main/java/io/opentelemetry/contrib/inferredspans/internal/asyncprofiler
java/io/opentelemetry/contrib/inferredspans/internal/asyncprofiler Expand file tree Collapse file tree 4 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ dependencies {
55
55
api(" org.testcontainers:kafka:1.21.3" )
56
56
api(" com.lmax:disruptor:3.4.4" )
57
57
api(" org.jctools:jctools-core:4.0.5" )
58
- api(" tools.profiler:async-profiler:4.0 " )
58
+ api(" tools.profiler:async-profiler:4.1 " )
59
59
api(" com.blogspot.mydailyjava:weak-lock-free:0.18" )
60
60
api(" org.agrona:agrona:1.22.0" )
61
61
api(" com.github.f4b6a3:uuid-creator:6.1.1" )
Original file line number Diff line number Diff line change @@ -199,6 +199,10 @@ private void parseConstantPool() throws IOException {
199
199
case ContentTypeId .CONTENT_SYMBOL :
200
200
readSymbolConstants (count );
201
201
break ;
202
+ case ContentTypeId .CONTENT_STRING :
203
+ // ignore empty string
204
+ bufferedFile .skip (2 );
205
+ break ;
202
206
default :
203
207
throw new IllegalStateException ("Unhandled constant pool type: " + typeId );
204
208
}
@@ -499,5 +503,6 @@ private ContentTypeId() {}
499
503
static final int CONTENT_FRAME_TYPE = 24 ;
500
504
static final int CONTENT_GC_WHEN = 32 ;
501
505
static final int CONTENT_PACKAGE = 30 ;
506
+ static final int CONTENT_STRING = 20 ;
502
507
}
503
508
}
Original file line number Diff line number Diff line change @@ -58,6 +58,6 @@ void name() throws Exception {
58
58
}
59
59
stackFrames .clear ();
60
60
});
61
- assertThat (stackTraces .get ()).isEqualTo (66 );
61
+ assertThat (stackTraces .get ()).isEqualTo (92 );
62
62
}
63
63
}
You can’t perform that action at this time.
0 commit comments