File tree Expand file tree Collapse file tree 4 files changed +8
-4
lines changed
src/main/java/org/slf4j/impl Expand file tree Collapse file tree 4 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 149149 <groupId >org.apache.maven.plugins</groupId >
150150 <artifactId >maven-release-plugin</artifactId >
151151 <version >${maven-release-plugin.version} </version >
152+ <configuration >
153+ <autoVersionSubmodules >true</autoVersionSubmodules >
154+ <tagNameFormat >@{project.version}</tagNameFormat >
155+ </configuration >
152156 </plugin >
153157 </plugins >
154158 </build >
Original file line number Diff line number Diff line change 4949 *
5050 * @author Ceki Gülcü
5151 */
52- public class StaticLoggerBinder implements LoggerFactoryBinder {
52+ public final class StaticLoggerBinder implements LoggerFactoryBinder {
5353
5454 /**
5555 * The unique instance of this class.
Original file line number Diff line number Diff line change 4747 *
4848 * @author Ceki Gülcü
4949 */
50- public class StaticMDCBinder {
50+ public final class StaticMDCBinder {
5151
5252 /**
5353 * The unique instance of this class.
Original file line number Diff line number Diff line change 4949 *
5050 * @author Ceki Gülcü
5151 */
52- public class StaticMarkerBinder implements MarkerFactoryBinder {
52+ public final class StaticMarkerBinder implements MarkerFactoryBinder {
5353
5454 /**
5555 * The unique instance of this class.
5656 */
5757 public static final StaticMarkerBinder SINGLETON = new StaticMarkerBinder ();
5858
59- final IMarkerFactory markerFactory = new BasicMarkerFactory ();
59+ private final IMarkerFactory markerFactory = new BasicMarkerFactory ();
6060
6161 private StaticMarkerBinder () {
6262 }
You can’t perform that action at this time.
0 commit comments