We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72b1abd commit bff1a19Copy full SHA for bff1a19
spring-core/src/main/java/org/springframework/core/type/classreading/SimpleMetadataReader.java
@@ -16,7 +16,6 @@
16
17
package org.springframework.core.type.classreading;
18
19
-import java.io.BufferedInputStream;
20
import java.io.IOException;
21
import java.io.InputStream;
22
@@ -53,7 +52,7 @@ final class SimpleMetadataReader implements MetadataReader {
53
52
}
54
55
private static ClassReader getClassReader(Resource resource) throws IOException {
56
- try (InputStream is = new BufferedInputStream(resource.getInputStream())) {
+ try (InputStream is = resource.getInputStream()) {
57
try {
58
return new ClassReader(is);
59
0 commit comments