changed code indent by space instead of tab

This commit is contained in:
Bhabani Prasad Patel
2021-05-27 11:42:38 +05:30
parent 061023b683
commit 81b2fbf150
6 changed files with 103 additions and 103 deletions
@@ -8,8 +8,8 @@ import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
@ComponentScan({ "com.baeldung.sampleapp.web" })
public class MaxHTTPHeaderSizeConfig implements WebMvcConfigurer {
public MaxHTTPHeaderSizeConfig() {
super();
}
public MaxHTTPHeaderSizeConfig() {
super();
}
}
@@ -9,9 +9,9 @@ import org.springframework.web.bind.annotation.RestController;
@RequestMapping(value = "/request-header-test")
public class MaxHttpHeaderSizeController {
@GetMapping
public boolean testMaxHTTPHeaderSize(@RequestHeader(value = "token") String token) {
return true;
}
@GetMapping
public boolean testMaxHTTPHeaderSize(@RequestHeader(value = "token") String token) {
return true;
}
}