Skip to content

Commit 0707b07

Browse files
committed
[ci] Fix naming
1 parent ab5adf8 commit 0707b07

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/main/java/org/apache/ibatis/jdbc/AbstractSQL.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -395,20 +395,20 @@ public String toString() {
395395
}
396396

397397
private static class SafeAppendable {
398-
private final Appendable a;
398+
private final Appendable appendable;
399399
private boolean empty = true;
400400

401401
public SafeAppendable(Appendable a) {
402402
super();
403-
this.a = a;
403+
this.appendable = a;
404404
}
405405

406406
public SafeAppendable append(CharSequence s) {
407407
try {
408408
if (empty && s.length() > 0) {
409409
empty = false;
410410
}
411-
a.append(s);
411+
appendable.append(s);
412412
} catch (IOException e) {
413413
throw new RuntimeException(e);
414414
}

src/main/java/org/apache/ibatis/logging/LogFactory.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ private LogFactory() {
4343
// disable construction
4444
}
4545

46-
public static Log getLog(Class<?> aClass) {
47-
return getLog(aClass.getName());
46+
public static Log getLog(Class<?> clazz) {
47+
return getLog(clazz.getName());
4848
}
4949

5050
public static Log getLog(String logger) {

0 commit comments

Comments
 (0)