Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public String classEntryName(String name) {

/** For testing purposes only. */
public static AgentJarIndex emptyIndex() {
return new AgentJarIndex(new String[0], ClassNameTrie.Builder.EMPTY_TRIE);
return new AgentJarIndex(new String[0], ClassNameTrie.EMPTY_TRIE);
}

public static AgentJarIndex readIndex(JarFile agentJar) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class RepoIndex {

static final RepoIndex EMPTY =
new RepoIndex(
ClassNameTrie.Builder.EMPTY_TRIE,
ClassNameTrie.EMPTY_TRIE,
Collections.emptyMap(),
Collections.emptyList(),
Collections.emptyList());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public class Redaction {
"xsrf",
"xsrftoken");
private static final Set<String> KEYWORDS = ConcurrentHashMap.newKeySet();
private static ClassNameTrie typeTrie = ClassNameTrie.Builder.EMPTY_TRIE;
private static ClassNameTrie typeTrie = ClassNameTrie.EMPTY_TRIE;
private static List<String> redactedClasses;
private static List<String> redactedPackages;

Expand Down Expand Up @@ -190,7 +190,7 @@ public static List<String> getRedactedClasses() {
}

public static void clearUserDefinedTypes() {
typeTrie = ClassNameTrie.Builder.EMPTY_TRIE;
typeTrie = ClassNameTrie.EMPTY_TRIE;
}

public static void resetUserDefinedKeywords() {
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ scala33 = "3.3.0"
autoservice = "1.1.1"
asm = "9.9.1"
byte-buddy = "1.18.10"
instrument-java = "0.0.3"
instrument-java = "0.0.4"
Comment thread
mcculls marked this conversation as resolved.

# Benchmarks
jmh = "1.37"
Expand Down