Skip to content

Commit 364442b

Browse files
Fix missing dot in Vaadin URL Mapping example (#4709)
1 parent 246325a commit 364442b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

articles/flow/integrations/spring/configuration.adoc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,8 +206,7 @@ FilterRegistrationBean<?> publicImagesAliasFilter(@Value("${vaadin.url-mapping}"
206206
throws ServletException, IOException {
207207
// Remove Vaadin URL mapping from the path and forward the request
208208
String path = request.getRequestURI().substring(baseMapping.length());
209-
request.getRequestDispatcher(path)
210-
forward(request, response);
209+
request.getRequestDispatcher(path).forward(request, response);
211210
}
212211
});
213212
registrationBean.addUrlPatterns(baseMapping + "/images/*");

0 commit comments

Comments
 (0)