You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: dd-java-agent/agent-tooling/src/test/groovy/datadog/trace/agent/tooling/bytebuddy/outline/OutlineTypeParserTest.groovy
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ import spock.lang.Specification
5
5
6
6
classOutlineTypeParserTestextendsSpecification {
7
7
8
-
void'test modifiers are correct and anonymous classes are detected'() {
8
+
void'test modifiers are correct'() {
9
9
setup:
10
10
final parser =newOutlineTypeParser()
11
11
final locator =ClassFileLocators.classFileLocator(Thread.currentThread().contextClassLoader)
@@ -15,12 +15,13 @@ class OutlineTypeParserTest extends Specification {
15
15
final outline = parser.parse(bytes)
16
16
17
17
then:
18
-
outline.anonymousType == anonymous
19
18
outline.interface == isinterface
20
19
outline.abstract== isabstract
21
20
outline.annotation == annotation
22
21
outline.enum == isenum
23
22
23
+
// isAnonymousType is no longer supported in outlines for performance reasons
Copy file name to clipboardExpand all lines: dd-java-agent/instrumentation/iast-instrumenter/src/main/java/datadog/trace/instrumentation/iastinstrumenter/IastInstrumentation.java
0 commit comments