From 3bf5f426b38576a3ab601ff2e4128792c4d5d61b Mon Sep 17 00:00:00 2001 From: Andrew Gvozdev Date: Sat, 23 Jan 2010 05:04:54 +0000 Subject: [PATCH] cosmetics: NON-NLS and JavaDoc tag warnings fixed --- .../cdt/core/settings/model/ICMultiItemsHolder.java | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/settings/model/ICMultiItemsHolder.java b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/settings/model/ICMultiItemsHolder.java index 6358f6d03c5..2ed28ee65d2 100644 --- a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/settings/model/ICMultiItemsHolder.java +++ b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/settings/model/ICMultiItemsHolder.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2008 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 @@ -24,11 +24,10 @@ package org.eclipse.cdt.core.settings.model; * */ public interface ICMultiItemsHolder { - public static final String EMPTY_STR = ""; + public static final String EMPTY_STR = ""; //$NON-NLS-1$ /** - * Returns array of items which it holds - * @return + * @return array of items which it holds */ Object[] getItems(); }