We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8016a4 commit 0c35851Copy full SHA for 0c35851
src/main/java/org/junit/runner/notification/SynchronizedRunListener.java
@@ -5,12 +5,17 @@
5
import org.junit.runner.Result;
6
7
/**
8
- * SynchronizedRunListener decorates {@link RunListener} and
9
- * has all methods synchronized.
+ * SynchronizedRunListener decorates {@link RunListener}, has all methods
+ * synchronized and is <em>not</em> public.
10
+ * <p>
11
+ * Due to backward compatibility, this synchronized listener behaves thread
12
+ * safe as {@link RunListener} in the old synchronized {@link RunNotifier}.
13
*
14
* @author Tibor Digana (tibor17)
15
* @version 4.12
16
* @since 4.12
17
+ *
18
+ * @see RunNotifier
19
*/
20
@ThreadSafe
21
final class SynchronizedRunListener extends RunListener {
0 commit comments