Skip to content

Commit e4375ca

Browse files
authored
Merge pull request #13 from richard483/dev-march
Non-snapshot release
2 parents b0307be + 9669819 commit e4375ca

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
</execution>
1717
</executions>
1818
<groupId>org.apache.maven.plugins</groupId>
19-
<version>3.3.1</version>
19+
<version>${maven-plugin.version}</version>
2020
</plugin>
2121
<plugin>
2222
<artifactId>spring-boot-maven-plugin</artifactId>
@@ -102,6 +102,7 @@
102102
</parent>
103103
<properties>
104104
<java.version>21</java.version>
105+
<maven-plugin.version>3.3.1</maven-plugin.version>
105106
</properties>
106107
<scm>
107108
<connection>scm:git:git://github.com/richard483/raven-api-client.git</connection>
@@ -112,5 +113,5 @@
112113
</scm>
113114

114115
<url>https://github.com/richard483/raven-api-client</url>
115-
<version>0.0.19-SNAPSHOT</version>
116+
<version>0.1.0</version>
116117
</project>

src/main/java/com/nephren/raven/apiclient/aop/RavenApiClientMethodInterceptor.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,6 @@ private Mono handleResponseEntity(Mono<? extends WebClient.RequestHeadersSpec<?>
280280
private Mono<WebClient.ResponseSpec> getResponseEntitySpec(
281281
Mono<? extends WebClient.RequestHeadersSpec<
282282
?>> client) {
283-
// TODO: need to update error handling
284283
return client.map(spec -> spec.retrieve().onStatus(HttpStatusCode::isError,
285284
clientResponse -> Mono.empty()));
286285
}

src/main/java/com/nephren/raven/apiclient/aop/RequestMappingMetadataBuilder.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,6 @@ private void prepareMethods() {
131131
methods = Arrays.stream(ReflectionUtils.getAllDeclaredMethods(type))
132132
.filter(method -> getRequestMappingAnnotation(method) != null)
133133
.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
136134
}
137135

138136
private void prepareHeaders() {

0 commit comments

Comments
 (0)