Skip to content

Commit

Permalink
Make method private
Browse files Browse the repository at this point in the history
  • Loading branch information
DaGeRe committed Dec 13, 2024
1 parent 67bbcb6 commit 4177507
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public void addAllMeasurements(CallTreeNode root) {
addMeasurements(root);
}

public void addMeasurements(final CallTreeNode parent) {
private void addMeasurements(final CallTreeNode parent) {
for (CallTreeNode child : parent.getChildren()) {
if (includableNodes.contains(child)) {
LOG.debug("Analyzing: {}", child);
Expand Down

0 comments on commit 4177507

Please sign in to comment.