1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-07 17:56:01 +02:00

JavaDoc warnings fixed

This commit is contained in:
Andrew Gvozdev 2009-08-05 18:23:59 +00:00
parent 33186a3a28
commit c77289f6c3
2 changed files with 3 additions and 6 deletions

View file

@ -16,7 +16,6 @@ import java.util.ArrayList;
import java.util.List; import java.util.List;
import org.eclipse.cdt.make.core.IMakeTarget; import org.eclipse.cdt.make.core.IMakeTarget;
import org.eclipse.cdt.make.internal.core.MakeTargetManager;
import org.eclipse.cdt.make.internal.ui.MakeUIPlugin; import org.eclipse.cdt.make.internal.ui.MakeUIPlugin;
import org.eclipse.core.resources.IContainer; import org.eclipse.core.resources.IContainer;
import org.eclipse.core.runtime.CoreException; import org.eclipse.core.runtime.CoreException;
@ -103,8 +102,7 @@ public class FileTransferDropTargetListener extends AbstractContainerAreaDropAda
/** /**
* Creates make targets array from filenames array. These will be loose * Creates make targets array from filenames array. These will be loose
* targets not connected to global make target list managed by * targets not connected to global make target list managed by MakeTargetManager
* {@link MakeTargetManager}.
* *
* @param filenames - array of filenames. Each filename expected to be an * @param filenames - array of filenames. Each filename expected to be an
* actual file otherwise a user gets a warning popup. * actual file otherwise a user gets a warning popup.

View file

@ -21,7 +21,6 @@ import org.eclipse.cdt.make.core.IMakeCommonBuildInfo;
import org.eclipse.cdt.make.core.IMakeTarget; import org.eclipse.cdt.make.core.IMakeTarget;
import org.eclipse.cdt.make.core.IMakeTargetManager; import org.eclipse.cdt.make.core.IMakeTargetManager;
import org.eclipse.cdt.make.core.MakeCorePlugin; import org.eclipse.cdt.make.core.MakeCorePlugin;
import org.eclipse.cdt.make.internal.core.MakeTarget;
import org.eclipse.cdt.make.internal.ui.MakeUIPlugin; import org.eclipse.cdt.make.internal.ui.MakeUIPlugin;
import org.eclipse.cdt.make.ui.dialogs.MakeTargetDialog; import org.eclipse.cdt.make.ui.dialogs.MakeTargetDialog;
import org.eclipse.core.resources.IContainer; import org.eclipse.core.resources.IContainer;
@ -396,7 +395,7 @@ public class MakeTargetDndUtil {
* @param destination - destination make target. * @param destination - destination make target.
* @throws CoreException if there is a problem populating the target. * @throws CoreException if there is a problem populating the target.
* *
* @see MakeTarget * See MakeTarget
*/ */
private static void copyTargetData(IMakeTarget source, IMakeTarget destination) private static void copyTargetData(IMakeTarget source, IMakeTarget destination)
throws CoreException { throws CoreException {
@ -423,7 +422,7 @@ public class MakeTargetDndUtil {
} }
/** /**
* Create @{code MakeTarget} from basic data elements available during * Create {@code MakeTarget} from basic data elements available during
* copy/paste or drag/drop operations. The other data will be set to default. * copy/paste or drag/drop operations. The other data will be set to default.
* *
* @param name - name of make target being created. * @param name - name of make target being created.