Skip to content

Commit 565b20d

Browse files
committed
Polishing
1 parent 7610210 commit 565b20d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

spring-core/src/main/java/org/springframework/asm/SpringAsmInfo.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2014 the original author or authors.
2+
* Copyright 2002-2017 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -18,7 +18,7 @@
1818

1919
/**
2020
* Utility class exposing constants related to Spring's internal repackaging
21-
* of the ASM bytecode manipulation library (currently based on version 5.0).
21+
* of the ASM bytecode manipulation library (currently based on version 5.2).
2222
*
2323
* <p>See <a href="package-summary.html">package-level javadocs</a> for more
2424
* information on {@code org.springframework.asm}.

spring-web/src/main/java/org/springframework/web/client/HttpMessageConverterExtractor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public HttpMessageConverterExtractor(Type responseType, List<HttpMessageConverte
6969
Assert.notNull(responseType, "'responseType' must not be null");
7070
Assert.notEmpty(messageConverters, "'messageConverters' must not be empty");
7171
this.responseType = responseType;
72-
this.responseClass = (responseType instanceof Class) ? (Class<T>) responseType : null;
72+
this.responseClass = (responseType instanceof Class ? (Class<T>) responseType : null);
7373
this.messageConverters = messageConverters;
7474
this.logger = logger;
7575
}

0 commit comments

Comments
 (0)