From de30a4ac8b3c3136641db8c39231b5d32d9d6b33 Mon Sep 17 00:00:00 2001 From: Alain Magloire Date: Wed, 16 Jul 2003 15:02:00 +0000 Subject: [PATCH] Patch from Alex Chapiro to fix a bug --- .../src/org/eclipse/cdt/core/CProjectNature.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/CProjectNature.java b/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/CProjectNature.java index 0de56493305..b969b4346ec 100644 --- a/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/CProjectNature.java +++ b/core/org.eclipse.cdt.core/src/org/eclipse/cdt/core/CProjectNature.java @@ -246,7 +246,7 @@ public class CProjectNature implements IProjectNature { System.arraycopy(commands, 0, newCommands, 0, i); System.arraycopy(commands, i + 1, newCommands, i, commands.length - i - 1); description.setBuildSpec(newCommands); - return; + break; } } getProject().setDescription(description, mon);