Remove redundant public keyword from ItemWriter

This commit is contained in:
dsyer
2008-04-08 07:28:28 +00:00
parent e3d4186bf8
commit 3e2643b9ec

View File

@@ -45,19 +45,19 @@ public interface ItemWriter {
* retry or a batch the framework will catch the exception and convert or
* rethrow it as appropriate.
*/
public void write(Object item) throws Exception;
void write(Object item) throws Exception;
/**
* Flush any buffers that are being held. This will usually be performed
* prior to committing any transactions.
* @throws FlushFailedException TODO
*/
public void flush() throws FlushFailedException;
void flush() throws FlushFailedException;
/**
* Clear any buffers that are being held. This will usually be performed
* prior to rolling back any transactions.
* @throws ClearFailedException TODO
*/
public void clear() throws ClearFailedException;
void clear() throws ClearFailedException;
}