|
From: <tr...@us...> - 2003-07-16 22:45:33
|
Update of /cvsroot/babeldoc/babeldoc/modules/core/src/com/babeldoc/core/pipeline/simple
In directory sc8-pr-cvs1:/tmp/cvs-serv4858/modules/core/src/com/babeldoc/core/pipeline/simple
Modified Files:
SimplePipelineStageResolver.java
Log Message:
New pipeline stage factory threading model has been implemented.
Index: SimplePipelineStageResolver.java
===================================================================
RCS file: /cvsroot/babeldoc/babeldoc/modules/core/src/com/babeldoc/core/pipeline/simple/SimplePipelineStageResolver.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** SimplePipelineStageResolver.java 27 Jun 2003 02:19:59 -0000 1.4
--- SimplePipelineStageResolver.java 16 Jul 2003 22:45:28 -0000 1.5
***************
*** 140,146 ****
// HEAVY EXPLAINING: For each token in the key (last token), create a
! // Hashtable and map it to that that token in the working hashtable.
! // point the working hashtable to the newly created hashtable. If the last
! // token is reached map the value to the name in the hashtable.
StringTokenizer st = new StringTokenizer(key, ".");
int numTokens = st.countTokens();
--- 140,146 ----
// HEAVY EXPLAINING: For each token in the key (last token), create a
! // map and map it to that that token in the working map.
! // point the working hashtable to the newly created map. If the last
! // token is reached map the value to the name in the map.
StringTokenizer st = new StringTokenizer(key, ".");
int numTokens = st.countTokens();
|