From 44c0b8d55743f606367f8c298be04be4714425fb Mon Sep 17 00:00:00 2001 From: Yanming Zhou Date: Wed, 27 Nov 2019 15:28:01 +0800 Subject: [PATCH] Fix wrong indent --- .../item/support/SingleItemPeekableItemReader.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/spring-batch-infrastructure/src/main/java/org/springframework/batch/item/support/SingleItemPeekableItemReader.java b/spring-batch-infrastructure/src/main/java/org/springframework/batch/item/support/SingleItemPeekableItemReader.java index 2b29de94e4..d5d1daa4e3 100644 --- a/spring-batch-infrastructure/src/main/java/org/springframework/batch/item/support/SingleItemPeekableItemReader.java +++ b/spring-batch-infrastructure/src/main/java/org/springframework/batch/item/support/SingleItemPeekableItemReader.java @@ -67,7 +67,7 @@ public void setDelegate(ItemReader delegate) { * * @see ItemReader#read() */ - @Nullable + @Nullable @Override public T read() throws Exception, UnexpectedInputException, ParseException { if (next != null) { @@ -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) { @@ -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) { @@ -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) { @@ -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