Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ Changes in version 3.0.0 (TBD)
* Removed Spring framework support
* Fixed IOUtil.getResource() to use ClassLoader argument (gc0109)
* Added support for validating marshalled fields (gc0096)
* BeanWriter now implements AutoCloseable
* BeanReader now implements Closeable
* BeanWriter and BeanReader now implements AutoCloseable
* Added SegmentBuilder.at(int) method

Changes in version 2.1.0 (2014-09-06)
Expand Down
3 changes: 1 addition & 2 deletions src/org/beanio/BeanReader.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
*/
package org.beanio;

import java.io.Closeable;
import java.io.IOException;

import org.beanio.internal.util.Debuggable;
Expand All @@ -29,7 +28,7 @@
* @since 1.0
* @see StreamFactory
*/
public interface BeanReader extends Debuggable, Closeable {
public interface BeanReader extends Debuggable, AutoCloseable {

/**
* Reads a single bean from the input stream. If the end of the stream is
Expand Down