[Nice-commit] eclipse/src/nice/eclipse/core NiceProject.nice,1.3,1.4
Brought to you by:
bonniot
From: <gr...@us...> - 2003-08-31 13:48:27
|
Update of /cvsroot/nice/eclipse/src/nice/eclipse/core In directory sc8-pr-cvs1:/tmp/cvs-serv12985/src/nice/eclipse/core Modified Files: NiceProject.nice Log Message: adjusting source to the changes filter method in the nice framework Index: NiceProject.nice =================================================================== RCS file: /cvsroot/nice/eclipse/src/nice/eclipse/core/NiceProject.nice,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** NiceProject.nice 6 Aug 2003 13:15:27 -0000 1.3 --- NiceProject.nice 31 Aug 2003 13:48:22 -0000 1.4 *************** *** 57,61 **** let description = project.getDescription(); let commands = description.getBuildSpec(); ! let newCommands = commands.filter(ICommand c => ! c.getBuilderName().equals(builderID)); description.setBuildSpec(newCommands); project.setDescription(description, null); --- 57,61 ---- let description = project.getDescription(); let commands = description.getBuildSpec(); ! let ICommand[] newCommands = commands.filter(ICommand c => ! c.getBuilderName().equals(builderID)); description.setBuildSpec(newCommands); project.setDescription(description, null); |