Fixed a lot of checkstyle warnings'

This commit is contained in:
Marcin Grzejszczak
2018-10-01 12:29:33 +02:00
parent 6f5ef23674
commit 99d38afc69
268 changed files with 6488 additions and 4456 deletions

View File

@@ -32,6 +32,7 @@ import org.springframework.web.bind.annotation.RestController;
public class SampleController {
private final Zipkin zipkin;
private final Random random = new Random();
@Autowired
@@ -56,9 +57,11 @@ public class SampleController {
@FeignClient("zipkin")
interface Zipkin {
@RequestMapping(value = "/call", method = RequestMethod.GET)
String call();
@RequestMapping(value = "/hi2", method = RequestMethod.GET)
String hi2();
}