File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -8,8 +8,7 @@ Changes in version 3.0.0 (TBD)
8
8
* Removed Spring framework support
9
9
* Fixed IOUtil.getResource() to use ClassLoader argument (gc0109)
10
10
* Added support for validating marshalled fields (gc0096)
11
- * BeanWriter now implements AutoCloseable
12
- * BeanReader now implements Closeable
11
+ * BeanWriter and BeanReader now implements AutoCloseable
13
12
* Added SegmentBuilder.at(int) method
14
13
15
14
Changes in version 2.1.0 (2014-09-06)
Original file line number Diff line number Diff line change 15
15
*/
16
16
package org .beanio ;
17
17
18
- import java .io .Closeable ;
19
18
import java .io .IOException ;
20
19
21
20
import org .beanio .internal .util .Debuggable ;
29
28
* @since 1.0
30
29
* @see StreamFactory
31
30
*/
32
- public interface BeanReader extends Debuggable , Closeable {
31
+ public interface BeanReader extends Debuggable , AutoCloseable {
33
32
34
33
/**
35
34
* Reads a single bean from the input stream. If the end of the stream is
You can’t perform that action at this time.
0 commit comments