private final MethodInfo info;
public VRaptor2PathResolver(Config config, HttpServletRequest request, MethodInfo info) {
this.info = info;
this.pattern = config.getViewPattern();
this.vraptor3 = new DefaultPathResolver(request, new AcceptHeaderToFormat() {
public String getFormat(String mimeType) {
return "html";
}
});
}