format-only
Project: http://git-wip-us.apache.org/repos/asf/incubator-blur/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-blur/commit/1a59e6ac Tree: http://git-wip-us.apache.org/repos/asf/incubator-blur/tree/1a59e6ac Diff: http://git-wip-us.apache.org/repos/asf/incubator-blur/diff/1a59e6ac Branch: refs/heads/master Commit: 1a59e6acee477d53a059f09b7c5b135e6e5577e3 Parents: c92a226 Author: twilliams <[email protected]> Authored: Wed Nov 12 20:58:27 2014 -0500 Committer: twilliams <[email protected]> Committed: Wed Nov 12 20:58:27 2014 -0500 ---------------------------------------------------------------------- .../blur/command/commandtype/TableReadCommand.java | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/1a59e6ac/blur-core/src/main/java/org/apache/blur/command/commandtype/TableReadCommand.java ---------------------------------------------------------------------- diff --git a/blur-core/src/main/java/org/apache/blur/command/commandtype/TableReadCommand.java b/blur-core/src/main/java/org/apache/blur/command/commandtype/TableReadCommand.java index d015cf1..d46fc8f 100644 --- a/blur-core/src/main/java/org/apache/blur/command/commandtype/TableReadCommand.java +++ b/blur-core/src/main/java/org/apache/blur/command/commandtype/TableReadCommand.java @@ -20,26 +20,24 @@ import java.io.IOException; import java.util.Map; import org.apache.blur.command.CombiningContext; -import org.apache.blur.command.IndexContext; import org.apache.blur.command.Location; -import org.apache.blur.command.annotation.RequiredArgument; -import org.apache.lucene.index.Term; /** * <p> - * The TableReadCommand is a base command over a single table for use when - * the return type from an individual shard is the same as the return type - * for the combine. + * The TableReadCommand is a base command over a single table for use when the + * return type from an individual shard is the same as the return type for the + * combine. * </p> * <p> * Example usage: + * * <pre> * public class DocFreqCommand extends TableReadCommand<Long> { * private static final String NAME = "docFreq"; - * + * * @RequiredArgument * private String fieldName; - * + * * @RequiredArgument * private String term; * ... @@ -64,6 +62,7 @@ import org.apache.lucene.index.Term; * ... * } * </pre> + * * </p> */ public abstract class TableReadCommand<T> extends ClusterServerReadCommandSingleTable<T> {
