Skip to content

Commit

Permalink
fix: remove sysout (#180)
Browse files Browse the repository at this point in the history
  • Loading branch information
manikmagar authored May 10, 2024
1 parent 335bbc0 commit b8534a7
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ protected List<String> getSources() {

@Override
public boolean canHandle(ComponentIdentifier componentIdentifier) {
System.out.println("Can handle " + componentIdentifier + " " + super.canHandle(componentIdentifier));
return super.canHandle(componentIdentifier);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ public static String getRouteContainerLocation(TraceComponent traceComponent) {
if (parts.size() > 2) {
int routeIndex = parts.size() - 3;
LocationPart parentPart = parts.get(routeIndex);
System.out.println("parentPart: " + parentPart);
parentLocation = parentPart
.getPartIdentifier()
.filter(ComponentsUtil::isRoute)
Expand Down

0 comments on commit b8534a7

Please sign in to comment.