Skip to content

Commit 69365f3

Browse files
committed
optimize
1 parent bcf729c commit 69365f3

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,6 @@ public class PostServiceImpl implements PostService {
9898
```java
9999
@Service
100100
public class UserServiceImpl implements UserService {
101-
102101
@DataProvider("user")
103102
@Override
104103
public User get(@InvokeParameter("userId") Long id) {

README_EN.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,6 @@ require input parameter `userId`.
101101
```java
102102
@Service
103103
public class UserServiceImpl implements UserService {
104-
105104
    @DataProvider("user")
106105
    @Override
107106
    public User get(@InvokeParameter("userId") Long id) {

spring-boot-data-aggregator-core/src/main/java/io/github/lvyahui8/spring/aggregate/facade/DataBeanAggregateQueryFacade.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ <T> T get(String id, Map<String,Object> invokeParams, Class<T> clazz)
3737
* 3. Automatic injection
3838
*
3939
* @param invokeParams Fixed parameters that need to be passed in the query process
40-
* @param multipleArgumentsFunction
40+
* @param multipleArgumentsFunction Multiple arguments function
4141
* @param <T> Return value type
4242
* @return Return value
4343
* @throws InterruptedException If the thread is interrupted, this exception will be thrown
@@ -54,7 +54,7 @@ <T> T get(Map<String,Object> invokeParams, MultipleArgumentsFunction<T> multiple
5454
* 3. Automatic injection
5555
*
5656
* @param invokeParams Fixed parameters that need to be passed in the query process
57-
* @param multipleArgumentsFunction
57+
* @param multipleArgumentsFunction Multiple arguments function
5858
* @param timeout Timeout
5959
* @param <T> Return value type
6060
* @return Return value

0 commit comments

Comments
 (0)