Skip to content

Commit 2ec01b1

Browse files
committed
Tidy code
1 parent 60f7593 commit 2ec01b1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

spring-cloud-openfeign-core/src/test/java/org/springframework/cloud/openfeign/valid/FeignClientTests.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1069,7 +1069,7 @@ String multipart(@RequestPart("hello") String hello,
10691069
@RequestMapping(method = RequestMethod.POST, path = "/multipartPojo",
10701070
consumes = MediaType.MULTIPART_FORM_DATA_VALUE,
10711071
produces = MediaType.TEXT_PLAIN_VALUE)
1072-
String multipartHello(@RequestPart("pojo1") Hello pojo1,
1072+
String multipartPojo(@RequestPart("pojo1") Hello pojo1,
10731073
@RequestPart("pojo2") Hello pojo2,
10741074
@RequestPart("file") MultipartFile file) {
10751075
return pojo1.getMessage() + pojo2.getMessage() + file.getOriginalFilename();
@@ -1154,4 +1154,5 @@ public ServerList<Server> ribbonServerList() {
11541154
}
11551155

11561156
}
1157+
11571158
}

0 commit comments

Comments
 (0)