|
From: Christopher W. <caw...@us...> - 2005-03-30 01:56:41
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.core/src/org/rubypeople/rdt/internal/core/parser In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16630/src/org/rubypeople/rdt/internal/core/parser Modified Files: TaskParser.java Log Message: clear the task parser accumulated tags before we parse another file (otherwise we'll just keep them all and set them on succeeding files) Index: TaskParser.java =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.core/src/org/rubypeople/rdt/internal/core/parser/TaskParser.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** TaskParser.java 17 Mar 2005 01:13:19 -0000 1.5 --- TaskParser.java 30 Mar 2005 01:56:29 -0000 1.6 *************** *** 148,150 **** --- 148,154 ---- return Collections.unmodifiableList(tasks); } + + public void clear() { + tasks.clear(); + } } |