Update of /cvsroot/babeldoc/babeldoc/modules/core/src/com/babeldoc/core/pipeline
In directory sc8-pr-cvs1:/tmp/cvs-serv21295
Modified Files:
PipelineStage.java IPipelineStage.java
Log Message:
removed the threaded attribute on the pipeline stage
Index: PipelineStage.java
===================================================================
RCS file: /cvsroot/babeldoc/babeldoc/modules/core/src/com/babeldoc/core/pipeline/PipelineStage.java,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** PipelineStage.java 15 Jul 2003 15:07:53 -0000 1.15
--- PipelineStage.java 17 Jul 2003 00:22:10 -0000 1.16
***************
*** 118,124 ****
public static final String SPLIT_ATTRIBUTES = "splitAttributes";
- /** constant: nextStages are threaded */
- public static final String THREADED = "threaded";
-
/** constant: maximum number of threads for nextStages */
public static final String MAX_THREADS = "maxThreads";
--- 118,121 ----
***************
*** 223,233 ****
}
- /**
- * Return true if nextStages are threaded
- **/
- public boolean getThreaded() {
- return "true".equalsIgnoreCase(this.getOptions(THREADED));
- }
-
/**
* Return the maxThreads for the nextStages
--- 220,223 ----
Index: IPipelineStage.java
===================================================================
RCS file: /cvsroot/babeldoc/babeldoc/modules/core/src/com/babeldoc/core/pipeline/IPipelineStage.java,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** IPipelineStage.java 16 Jul 2003 05:17:39 -0000 1.12
--- IPipelineStage.java 17 Jul 2003 00:22:10 -0000 1.13
***************
*** 140,152 ****
/**
- * Return true if nextStages are threaded
- **/
- public boolean getThreaded();
-
- /**
* Return the maxThreads for the nextStages
**/
public int getMaxThreads();
!
/**
* pipeline stage processing core. This is the heart of the process for the
--- 140,147 ----
/**
* Return the maxThreads for the nextStages
**/
public int getMaxThreads();
!
/**
* pipeline stage processing core. This is the heart of the process for the
|