From e514d04dfa342904b638e88cd038b65745e55d57 Mon Sep 17 00:00:00 2001 From: Andrew Gvozdev Date: Mon, 19 Apr 2010 02:11:48 +0000 Subject: [PATCH] JavaDoc corrected --- .../org/eclipse/cdt/ui/actions/ManageConfigsAction.java | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/actions/ManageConfigsAction.java b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/actions/ManageConfigsAction.java index 561d24d69b1..09c7ca0a352 100644 --- a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/actions/ManageConfigsAction.java +++ b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/actions/ManageConfigsAction.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007 Intel Corporation and others. + * Copyright (c) 2007, 2010 Intel Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at @@ -25,8 +25,7 @@ import org.eclipse.cdt.ui.newui.IConfigManager; import org.eclipse.cdt.ui.newui.ManageConfigSelector; /** - * Action which changes active build configuration of the current project to - * the given one. + * Action which lets to manage (add/remove etc.) build configurations of the project. */ public class ManageConfigsAction implements IWorkbenchWindowPulldownDelegate2, IObjectActionDelegate { @@ -34,7 +33,7 @@ implements IWorkbenchWindowPulldownDelegate2, IObjectActionDelegate { public void selectionChanged(IAction action, ISelection selection) { if (!selection.isEmpty()) { - // case for context menu + // case for context menu if (selection instanceof StructuredSelection) { obs = ManageConfigSelector.getProjects(((StructuredSelection)selection).toArray()); action.setEnabled(ManageConfigSelector.getManager(obs) != null);