[logback-dev] svn commit: r1913 - logback/trunk/logback-core/src/main/java/ch/qos/logback/core
noreply.ceki at qos.ch
noreply.ceki at qos.ch
Wed Oct 29 20:13:40 CET 2008
Author: ceki
Date: Wed Oct 29 20:13:40 2008
New Revision: 1913
Modified:
logback/trunk/logback-core/src/main/java/ch/qos/logback/core/BasicStatusManager.java
Log:
added a minor comment
Modified: logback/trunk/logback-core/src/main/java/ch/qos/logback/core/BasicStatusManager.java
==============================================================================
--- logback/trunk/logback-core/src/main/java/ch/qos/logback/core/BasicStatusManager.java (original)
+++ logback/trunk/logback-core/src/main/java/ch/qos/logback/core/BasicStatusManager.java Wed Oct 29 20:13:40 2008
@@ -27,6 +27,7 @@
// reading SynchronizedCollection source code, we learn that the mutex is the
// returned synchronized list, we make use of this fact in getCopyOfStatusList
+ // protected access was requested in http://jira.qos.ch/browse/LBCORE-36
final protected List<Status> statusList = Collections
.synchronizedList(new ArrayList<Status>());
int level = Status.INFO;
@@ -34,6 +35,7 @@
// reading SynchronizedCollection source code, we learn that the mutex is the
// returned synchronized list, we make use of this fact in
// getCopyOfStatusListnerList
+ // protected access was requested in http://jira.qos.ch/browse/LBCORE-36
final protected List<StatusListener> statusListenerList = Collections
.synchronizedList(new ArrayList<StatusListener>());
More information about the logback-dev
mailing list