Skip to content

Commit d7886c6

Browse files
author
Matt
committed
Spotless
1 parent 6e7e380 commit d7886c6

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
@@ -99,8 +99,8 @@ public static Set<String> getJavaPids() {
9999
// Some JDKs don't have jvmstat available as a module, attempt to read from the hsperfdata
100100
// directory instead
101101
try (Stream<Path> stream =
102-
// Emulating the hotspot way to enumerate the JVM processes using the perfdata file
103-
// https://github.com/openjdk/jdk/blob/d7cb933b89839b692f5562aeeb92076cd25a99f6/src/hotspot/share/runtime/perfMemory.cpp#L244
102+
// Emulating the hotspot way to enumerate the JVM processes using the perfdata file
103+
// https://github.com/openjdk/jdk/blob/d7cb933b89839b692f5562aeeb92076cd25a99f6/src/hotspot/share/runtime/perfMemory.cpp#L244
104104
Files.list(Paths.get(getOSTempDir(), "hsperfdata_" + System.getProperty("user.name")))) {
105105
return stream
106106
.filter(file -> !Files.isDirectory(file))

0 commit comments

Comments
 (0)