Hi,
I am missing the point of the getPathParameters() call on HttpServerExchange.
I define a route like this :
```
RoutingHandler routingHandler = new RoutingHandler();
routingHandler.get("/hello/{email}/{something}", this::myHandle);
```
My expectations is that when, inside myHandle, when I do a client call, that this code
```
public void myHandle(HttpServerExchange exchange) {
System.out.println(exchange.getPathParameters());
}
```
will print those path parameters, but it seems to return an empty deque. However, the getQueryParameters reports those variables correctly (because the RoutingHandler's default ctor sets a flag that adds the path params to the query params list).
I get that it is kinda convenient of adding those path params also to the query params list, it's transparant then for the handler in a way, but why are those variables not present in the path parameters list? It feels like I am missing something here, and the documentation is not very clear on this topic it seems (Or I have missed it).
Can somebody tell me what I am missing here? Are my expectations of the path params wrong? When would there be some data inside the path params list then? It's not that I cannot work with the getQueryParameters function, it just bugs me that I don't get wy getPathParameters is empty in this case.
This is on undertow 2.2.17-Final, java 17 and ubuntu 20.04
Kasper