File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/main/java/org/apache/ibatis/logging/jdbc Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -48,8 +48,8 @@ public abstract class BaseJdbcLogger {
48
48
private final List <Object > columnNames = new ArrayList <>();
49
49
private final List <Object > columnValues = new ArrayList <>();
50
50
51
- protected Log statementLog ;
52
- protected int queryStack ;
51
+ protected final Log statementLog ;
52
+ protected final int queryStack ;
53
53
54
54
/*
55
55
* Default constructor
Original file line number Diff line number Diff line change 38
38
*/
39
39
public final class ResultSetLogger extends BaseJdbcLogger implements InvocationHandler {
40
40
41
- private static Set <Integer > BLOB_TYPES = new HashSet <>();
41
+ private static final Set <Integer > BLOB_TYPES = new HashSet <>();
42
42
private boolean first = true ;
43
43
private int rows ;
44
44
private final ResultSet rs ;
You can’t perform that action at this time.
0 commit comments