aboutsummaryrefslogtreecommitdiffstats
path: root/docproc/src/main/java/com/yahoo/docproc/Processing.java
diff options
context:
space:
mode:
Diffstat (limited to 'docproc/src/main/java/com/yahoo/docproc/Processing.java')
-rw-r--r--docproc/src/main/java/com/yahoo/docproc/Processing.java8
1 files changed, 3 insertions, 5 deletions
diff --git a/docproc/src/main/java/com/yahoo/docproc/Processing.java b/docproc/src/main/java/com/yahoo/docproc/Processing.java
index d6b82e96959..eacbf6ef132 100644
--- a/docproc/src/main/java/com/yahoo/docproc/Processing.java
+++ b/docproc/src/main/java/com/yahoo/docproc/Processing.java
@@ -18,10 +18,8 @@ import java.util.Map;
* @author bratseth
*/
public class Processing {
- /**
- * The name of the service which owns this processing.
- * Null is the same as "default"
- */
+
+ /** The name of the service which owns this processing. Null is the same as "default" */
private String service = null;
/** The processors to call the next work is done on this processing */
@@ -44,7 +42,7 @@ public class Processing {
private ProcessingEndpoint endpoint = null;
/** The registry of docproc services. */
- ComponentRegistry<DocprocService> docprocServiceRegistry = null;
+ private ComponentRegistry<DocprocService> docprocServiceRegistry = null;
private boolean getNumDocsCalled = false;
/**