Skip to content

Commit 9e161ee

Browse files
author
Matt
committed
Spotless cleanups for rebase off of review suggestions
1 parent bab5474 commit 9e161ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

internal-api/src/main/java/datadog/trace/util/PidHelper.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@ public static Set<String> getJavaPids() {
105105
// Some JDKs don't have jvmstat available as a module, attempt to read from the hsperfdata
106106
// directory instead
107107
try (Stream<Path> stream =
108-
// Emulating the hotspot way to enumerate the JVM processes using the perfdata file
109-
// https://github.com/openjdk/jdk/blob/d7cb933b89839b692f5562aeeb92076cd25a99f6/src/hotspot/share/runtime/perfMemory.cpp#L244
108+
// Emulating the hotspot way to enumerate the JVM processes using the perfdata file
109+
// https://github.com/openjdk/jdk/blob/d7cb933b89839b692f5562aeeb92076cd25a99f6/src/hotspot/share/runtime/perfMemory.cpp#L244
110110
Files.list(Paths.get(getOSTempDir(), "hsperfdata_" + System.getProperty("user.name")))) {
111111
return stream
112112
.filter(file -> !Files.isDirectory(file))

0 commit comments

Comments
 (0)