Skip to content

Commit 8b44dd5

Browse files
committed
preparations for first release
1 parent 9c346be commit 8b44dd5

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,10 @@
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>

src/main/java/org/slf4j/impl/StaticLoggerBinder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
*
5050
* @author Ceki G&uuml;lc&uuml;
5151
*/
52-
public class StaticLoggerBinder implements LoggerFactoryBinder {
52+
public final class StaticLoggerBinder implements LoggerFactoryBinder {
5353

5454
/**
5555
* The unique instance of this class.

src/main/java/org/slf4j/impl/StaticMDCBinder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
*
4848
* @author Ceki G&uuml;lc&uuml;
4949
*/
50-
public class StaticMDCBinder {
50+
public final class StaticMDCBinder {
5151

5252
/**
5353
* The unique instance of this class.

src/main/java/org/slf4j/impl/StaticMarkerBinder.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,14 +49,14 @@
4949
*
5050
* @author Ceki G&uuml;lc&uuml;
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
}

0 commit comments

Comments
 (0)