[Assorted-commits] SF.net SVN: assorted: [372] hash-join/trunk/tools/DbPrep.scala
Brought to you by:
yangzhang
From: <yan...@us...> - 2008-02-11 15:45:10
|
Revision: 372 http://assorted.svn.sourceforge.net/assorted/?rev=372&view=rev Author: yangzhang Date: 2008-02-11 07:45:13 -0800 (Mon, 11 Feb 2008) Log Message: ----------- fixed bug: not cleaning up titles on subsequent repetitions Modified Paths: -------------- hash-join/trunk/tools/DbPrep.scala Modified: hash-join/trunk/tools/DbPrep.scala =================================================================== --- hash-join/trunk/tools/DbPrep.scala 2008-02-11 05:46:03 UTC (rev 371) +++ hash-join/trunk/tools/DbPrep.scala 2008-02-11 15:45:13 UTC (rev 372) @@ -55,11 +55,11 @@ } if (body && line != "") { val (actress, title) = extract(pActress, line) - wa print (actress + "\0" + cleanTitle(xform(title)) + "\0") + wa print (actress + "\0" + xform(cleanTitle(title)) + "\0") while (line != "") { line = r.readLine.trim if (line != "") { - wa print (cleanTitle(xform(title)) + "\0") + wa print (xform(cleanTitle(title)) + "\0") } } wa print "\0" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |