Skip to content

Commit

Permalink
Fix wrong indent
Browse files Browse the repository at this point in the history
  • Loading branch information
quaff authored and fmbenhassine committed Nov 27, 2019
1 parent 85a6342 commit 44c0b8d
Showing 1 changed file with 5 additions and 5 deletions.
Expand Up @@ -67,7 +67,7 @@ public void setDelegate(ItemReader<T> delegate) {
*
* @see ItemReader#read()
*/
@Nullable
@Nullable
@Override
public T read() throws Exception, UnexpectedInputException, ParseException {
if (next != null) {
Expand All @@ -88,7 +88,7 @@ public T read() throws Exception, UnexpectedInputException, ParseException {
*
* @see PeekableItemReader#peek()
*/
@Nullable
@Nullable
@Override
public T peek() throws Exception, UnexpectedInputException, ParseException {
if (next == null) {
Expand All @@ -105,7 +105,7 @@ public T peek() throws Exception, UnexpectedInputException, ParseException {
* @throws ItemStreamException if there is a problem
* @see ItemStream#close()
*/
@Override
@Override
public void close() throws ItemStreamException {
next = null;
if (delegate instanceof ItemStream) {
Expand All @@ -122,7 +122,7 @@ public void close() throws ItemStreamException {
* @throws ItemStreamException if there is a problem
* @see ItemStream#open(ExecutionContext)
*/
@Override
@Override
public void open(ExecutionContext executionContext) throws ItemStreamException {
next = null;
if (delegate instanceof ItemStream) {
Expand All @@ -140,7 +140,7 @@ public void open(ExecutionContext executionContext) throws ItemStreamException {
* @throws ItemStreamException if there is a problem
* @see ItemStream#update(ExecutionContext)
*/
@Override
@Override
public void update(ExecutionContext executionContext) throws ItemStreamException {
if (next != null) {
// Get the last state from the delegate instead of using
Expand Down

0 comments on commit 44c0b8d

Please sign in to comment.