HADOOP-2776. Missing interface annotation on JournalSet. Contributed by Brandon Li.

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1230412 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jitendra Nath Pandey 2012-01-12 06:21:05 +00:00
parent dcea80a21b
commit 6234f3d91c
2 changed files with 6 additions and 0 deletions

View File

@ -170,6 +170,9 @@ Trunk (unreleased changes)
HDFS-2739. SecondaryNameNode doesn't start up. (jitendra)
HDFS-2776. Missing interface annotation on JournalSet.
(Brandon Li via jitendra)
Release 0.23.1 - UNRELEASED
INCOMPATIBLE CHANGES

View File

@ -35,11 +35,14 @@
import com.google.common.collect.Multimaps;
import com.google.common.collect.Sets;
import org.apache.hadoop.classification.InterfaceAudience;
/**
* Manages a collection of Journals. None of the methods are synchronized, it is
* assumed that FSEditLog methods, that use this class, use proper
* synchronization.
*/
@InterfaceAudience.Private
public class JournalSet implements JournalManager {
static final Log LOG = LogFactory.getLog(FSEditLog.class);