Skip to content

Commit 1ce185b

Browse files
[mq] [skip ddci] working branch - merge de1fadf on top of master at 42cdbe9
{"baseBranch":"master","baseCommit":"42cdbe9ce2db837302d873a13605c6977ceee1d6","createdAt":"2026-06-04T18:54:17.153407Z","headSha":"de1fadfcd663702aa232e86c07909ed9e777cfed","id":"d8a67ff6-0a2f-4e14-b84c-0674cee38f2c","priority":"200","pullRequestNumber":"11567","queuedAt":"2026-06-04T18:54:17.152330Z","status":"STATUS_QUEUED"}
2 parents aabbac0 + de1fadf commit 1ce185b

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

dd-java-agent/agent-bootstrap/src/main/java/datadog/trace/bootstrap/AgentJarIndex.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public String classEntryName(String name) {
6767

6868
/** For testing purposes only. */
6969
public static AgentJarIndex emptyIndex() {
70-
return new AgentJarIndex(new String[0], ClassNameTrie.Builder.EMPTY_TRIE);
70+
return new AgentJarIndex(new String[0], ClassNameTrie.EMPTY_TRIE);
7171
}
7272

7373
public static AgentJarIndex readIndex(JarFile agentJar) {

dd-java-agent/agent-ci-visibility/src/main/java/datadog/trace/civisibility/source/index/RepoIndex.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public class RepoIndex {
2626

2727
static final RepoIndex EMPTY =
2828
new RepoIndex(
29-
ClassNameTrie.Builder.EMPTY_TRIE,
29+
ClassNameTrie.EMPTY_TRIE,
3030
Collections.emptyMap(),
3131
Collections.emptyList(),
3232
Collections.emptyList());

dd-java-agent/agent-debugger/debugger-bootstrap/src/main/java/datadog/trace/bootstrap/debugger/util/Redaction.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ public class Redaction {
104104
"xsrf",
105105
"xsrftoken");
106106
private static final Set<String> KEYWORDS = ConcurrentHashMap.newKeySet();
107-
private static ClassNameTrie typeTrie = ClassNameTrie.Builder.EMPTY_TRIE;
107+
private static ClassNameTrie typeTrie = ClassNameTrie.EMPTY_TRIE;
108108
private static List<String> redactedClasses;
109109
private static List<String> redactedPackages;
110110

@@ -190,7 +190,7 @@ public static List<String> getRedactedClasses() {
190190
}
191191

192192
public static void clearUserDefinedTypes() {
193-
typeTrie = ClassNameTrie.Builder.EMPTY_TRIE;
193+
typeTrie = ClassNameTrie.EMPTY_TRIE;
194194
}
195195

196196
public static void resetUserDefinedKeywords() {

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ scala33 = "3.3.0"
3232
autoservice = "1.1.1"
3333
asm = "9.9.1"
3434
byte-buddy = "1.18.8"
35-
instrument-java = "0.0.3"
35+
instrument-java = "0.0.4"
3636

3737
# Benchmarks
3838
jmh = "1.37"

0 commit comments

Comments
 (0)