JdbcCursorItemReader's fields should be private

This commit is contained in:
Drummond Dawson
2019-02-21 21:05:52 -05:00
committed by Mahmoud Ben Hassine
parent 15dd8e280c
commit 4d39806820

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2006-2013 the original author or authors.
* Copyright 2006-2019 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -52,13 +52,13 @@ import org.springframework.util.ClassUtils;
*/
public class JdbcCursorItemReader<T> extends AbstractCursorItemReader<T> {
PreparedStatement preparedStatement;
private PreparedStatement preparedStatement;
PreparedStatementSetter preparedStatementSetter;
private PreparedStatementSetter preparedStatementSetter;
String sql;
private String sql;
RowMapper<T> rowMapper;
private RowMapper<T> rowMapper;
public JdbcCursorItemReader() {
super();