We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d511e34 commit c7e292eCopy full SHA for c7e292e
dd-java-agent/agent-debugger/src/main/java/com/datadog/debugger/util/ClassNameFiltering.java
@@ -54,11 +54,10 @@ static boolean isLambdaProxyClass(String className) {
54
}
55
56
int shadedIndexOf(String className) {
57
- String current = className;
58
int idx = 0;
59
int previousIdx = 0;
60
- while ((idx = current.indexOf('.', previousIdx)) > 0) {
61
- if (shadingTrie.apply(current, previousIdx) > 0) {
+ while ((idx = className.indexOf('.', previousIdx)) > 0) {
+ if (shadingTrie.apply(className, previousIdx) > 0) {
62
return idx + 1;
63
64
idx++;
0 commit comments