BAEL-4321 fix indentation

This commit is contained in:
Trixi Turny 2020-08-15 15:04:10 +01:00
parent 2239446285
commit 3c44e7af20
1 changed files with 1 additions and 2 deletions

View File

@ -14,8 +14,7 @@ public class TshirtSizeController {
}
@RequestMapping(value ="convertSize", method = RequestMethod.GET)
public int convertSize(@RequestParam(value = "label") final String label,
@RequestParam(value = "countryCode", required = false) final String countryCode) {
public int convertSize(@RequestParam(value = "label") final String label, @RequestParam(value = "countryCode", required = false) final String countryCode) {
return service.convertSize(label, countryCode);
}