File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/main/resources/META-INF/rewrite Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -583,8 +583,8 @@ examples:
583
583
584
584
class TrivialAppender extends AppenderBase<ILoggingEvent> {
585
585
@Override
586
- protected void append(ILoggingEvent loggingEvent ) {
587
- String s = this.layout.doLayout(loggingEvent );
586
+ protected void append(ILoggingEvent iLoggingEvent ) {
587
+ String s = this.layout.doLayout(iLoggingEvent );
588
588
System.out.println(s);
589
589
}
590
590
}
@@ -623,8 +623,8 @@ examples:
623
623
class TrivialLayout extends LayoutBase<ILoggingEvent> {
624
624
625
625
@Override
626
- public String doLayout(ILoggingEvent loggingEvent ) {
627
- return loggingEvent .getMessage();
626
+ public String doLayout(ILoggingEvent iLoggingEvent ) {
627
+ return iLoggingEvent .getMessage();
628
628
}
629
629
}
630
630
language: java
You can’t perform that action at this time.
0 commit comments