File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
src/main/java/org/apache/ibatis Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -395,20 +395,20 @@ public String toString() {
395
395
}
396
396
397
397
private static class SafeAppendable {
398
- private final Appendable a ;
398
+ private final Appendable appendable ;
399
399
private boolean empty = true ;
400
400
401
401
public SafeAppendable (Appendable a ) {
402
402
super ();
403
- this .a = a ;
403
+ this .appendable = a ;
404
404
}
405
405
406
406
public SafeAppendable append (CharSequence s ) {
407
407
try {
408
408
if (empty && s .length () > 0 ) {
409
409
empty = false ;
410
410
}
411
- a .append (s );
411
+ appendable .append (s );
412
412
} catch (IOException e ) {
413
413
throw new RuntimeException (e );
414
414
}
Original file line number Diff line number Diff line change @@ -43,8 +43,8 @@ private LogFactory() {
43
43
// disable construction
44
44
}
45
45
46
- public static Log getLog (Class <?> aClass ) {
47
- return getLog (aClass .getName ());
46
+ public static Log getLog (Class <?> clazz ) {
47
+ return getLog (clazz .getName ());
48
48
}
49
49
50
50
public static Log getLog (String logger ) {
You can’t perform that action at this time.
0 commit comments