Skip to content

Commit

Permalink
spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewazores committed Sep 12, 2024
1 parent 1065dba commit 29cfc18
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/java/io/cryostat/diagnostic/Diagnostics.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ public class Diagnostics {
public void gc(@RestPath long targetId) {
targetConnectionManager.executeConnectedTask(
Target.getTargetById(targetId),
conn -> conn.invokeMBeanOperation("java.lang:type=Memory", "gc", null, null, Void.class));
conn ->
conn.invokeMBeanOperation(
"java.lang:type=Memory", "gc", null, null, Void.class));
}
}

0 comments on commit 29cfc18

Please sign in to comment.