File tree Expand file tree Collapse file tree 3 files changed +3
-5
lines changed
src/main/java/com/nephren/raven/apiclient/aop Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 16
16
</execution >
17
17
</executions >
18
18
<groupId >org.apache.maven.plugins</groupId >
19
- <version >3.3.1 </version >
19
+ <version >${maven-plugin.version} </version >
20
20
</plugin >
21
21
<plugin >
22
22
<artifactId >spring-boot-maven-plugin</artifactId >
102
102
</parent >
103
103
<properties >
104
104
<java .version>21</java .version>
105
+ <maven-plugin .version>3.3.1</maven-plugin .version>
105
106
</properties >
106
107
<scm >
107
108
<connection >scm:git:git://github.com/richard483/raven-api-client.git</connection >
112
113
</scm >
113
114
114
115
<url >https://github.com/richard483/raven-api-client</url >
115
- <version >0.0.19-SNAPSHOT </version >
116
+ <version >0.1.0 </version >
116
117
</project >
Original file line number Diff line number Diff line change @@ -280,7 +280,6 @@ private Mono handleResponseEntity(Mono<? extends WebClient.RequestHeadersSpec<?>
280
280
private Mono <WebClient .ResponseSpec > getResponseEntitySpec (
281
281
Mono <? extends WebClient .RequestHeadersSpec <
282
282
?>> client ) {
283
- // TODO: need to update error handling
284
283
return client .map (spec -> spec .retrieve ().onStatus (HttpStatusCode ::isError ,
285
284
clientResponse -> Mono .empty ()));
286
285
}
Original file line number Diff line number Diff line change @@ -131,8 +131,6 @@ private void prepareMethods() {
131
131
methods = Arrays .stream (ReflectionUtils .getAllDeclaredMethods (type ))
132
132
.filter (method -> getRequestMappingAnnotation (method ) != null )
133
133
.collect (Collectors .toMap (java .lang .reflect .Method ::getName , method -> method ));
134
- // TODO:
135
- // check if this is correct, because it different from the reference code
136
134
}
137
135
138
136
private void prepareHeaders () {
You can’t perform that action at this time.
0 commit comments