Skip to content

Commit 44c0b8d

Browse files
quafffmbenhassine
authored andcommitted
Fix wrong indent
1 parent 85a6342 commit 44c0b8d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

spring-batch-infrastructure/src/main/java/org/springframework/batch/item/support/SingleItemPeekableItemReader.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public void setDelegate(ItemReader<T> delegate) {
6767
*
6868
* @see ItemReader#read()
6969
*/
70-
@Nullable
70+
@Nullable
7171
@Override
7272
public T read() throws Exception, UnexpectedInputException, ParseException {
7373
if (next != null) {
@@ -88,7 +88,7 @@ public T read() throws Exception, UnexpectedInputException, ParseException {
8888
*
8989
* @see PeekableItemReader#peek()
9090
*/
91-
@Nullable
91+
@Nullable
9292
@Override
9393
public T peek() throws Exception, UnexpectedInputException, ParseException {
9494
if (next == null) {
@@ -105,7 +105,7 @@ public T peek() throws Exception, UnexpectedInputException, ParseException {
105105
* @throws ItemStreamException if there is a problem
106106
* @see ItemStream#close()
107107
*/
108-
@Override
108+
@Override
109109
public void close() throws ItemStreamException {
110110
next = null;
111111
if (delegate instanceof ItemStream) {
@@ -122,7 +122,7 @@ public void close() throws ItemStreamException {
122122
* @throws ItemStreamException if there is a problem
123123
* @see ItemStream#open(ExecutionContext)
124124
*/
125-
@Override
125+
@Override
126126
public void open(ExecutionContext executionContext) throws ItemStreamException {
127127
next = null;
128128
if (delegate instanceof ItemStream) {
@@ -140,7 +140,7 @@ public void open(ExecutionContext executionContext) throws ItemStreamException {
140140
* @throws ItemStreamException if there is a problem
141141
* @see ItemStream#update(ExecutionContext)
142142
*/
143-
@Override
143+
@Override
144144
public void update(ExecutionContext executionContext) throws ItemStreamException {
145145
if (next != null) {
146146
// Get the last state from the delegate instead of using

0 commit comments

Comments
 (0)