8000 Provide access to VM arguments via shared CLIHelper by mtoffl01 · Pull Request #8538 · DataDog/dd-trace-java · GitHub
[go: up one dir, main page]

Skip to content

Provide access to VM arguments via shared CLIHelper #8538

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 17 commits into from
Mar 25, 2025
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Update internal-api/src/main/java/datadog/trace/bootstrap/config/prov…
…ider/VMArgsCache.java

Co-authored-by: datadog-datadog-prod-us1[bot] <88084959+datadog-datadog-prod-us1[bot]@users.noreply.github.com>
  • Loading branch information
mtoffl01 and datadog-datadog-prod-us1[bot] authored Mar 11, 2025
commit 6aba3f86159e44529a326e4eb85687c4bc8cf5fc
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public VMArgsCache(List<String> args) {
this.args = new HashSet<>(args);
}

private HashSet<String> getArgs() {
private Set<String> getArgs() {
return this.args;
}

Expand Down
Loading
0