From 627a66edb6791bdab5d6e0ef0caf0f56b5b7a35e Mon Sep 17 00:00:00 2001
From: Jean-Noël Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Mon, 11 Jan 2016 08:48:07 +0000
Subject: [PATCH] OPENDJ-2536 Add and use JCIP annotations jar
---
opendj-server-legacy/src/main/java/org/opends/server/replication/server/ChangelogState.java | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/server/replication/server/ChangelogState.java b/opendj-server-legacy/src/main/java/org/opends/server/replication/server/ChangelogState.java
index e7ec990..af1e575 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/replication/server/ChangelogState.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/replication/server/ChangelogState.java
@@ -21,7 +21,7 @@
* CDDL HEADER END
*
*
- * Copyright 2013-2015 ForgeRock AS
+ * Copyright 2013-2016 ForgeRock AS
*/
package org.opends.server.replication.server;
@@ -30,6 +30,8 @@
import java.util.Set;
import java.util.concurrent.ConcurrentSkipListMap;
+import net.jcip.annotations.ThreadSafe;
+
import org.opends.server.replication.common.CSN;
import org.opends.server.replication.common.MultiDomainServerState;
import org.opends.server.types.DN;
@@ -44,9 +46,8 @@
* <p>
* This class is used during replication initialization to decouple the code
* that reads the changelogStateDB from the code that makes use of its data.
- *
- * @ThreadSafe
*/
+@ThreadSafe
public class ChangelogState
{
private final ConcurrentSkipListMap<DN, Long> domainToGenerationId = new ConcurrentSkipListMap<>();
--
Gitblit v1.10.0