Skip to content

Commit

Permalink
Issue #7891 - Add toString() impls
Browse files Browse the repository at this point in the history
Signed-off-by: Joakim Erdfelt <joakim.erdfelt@gmail.com>
  • Loading branch information
joakime committed May 4, 2022
1 parent 7adf903 commit b8137c5
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
Expand Up @@ -337,5 +337,15 @@ public String getPathInfo()
// default is null
return null;
}

@Override
public String toString()
{
return "RegexMatchedPath[" +
"pathSpec=" + pathSpec +
", path=\"" + path + "\"" +
", matcher=" + matcher +
']';
}
}
}
Expand Up @@ -487,5 +487,15 @@ public String getPathInfo()
}
return null;
}

@Override
public String toString()
{
return "UriTemplateMatchedPath[" +
"pathSpec=" + pathSpec +
", path=\"" + path + "\"" +
", matcher=" + matcher +
']';
}
}
}

0 comments on commit b8137c5

Please sign in to comment.