1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 17:05:26 +02:00

JavaDoc complain fixed

This commit is contained in:
Andrew Gvozdev 2009-09-24 02:02:36 +00:00
parent e918fcfd0c
commit 61e5a9de3e

View file

@ -137,7 +137,7 @@ public class DefaultGCCDependencyCalculator2Commands implements
* working directory for the tool. This IPath is relative to the
* project directory.
*
* @see DefaultGCCDependencyCalculator2Commands(IPath source, IResource resource, IBuildObject buildContext, ITool tool, IPath topBuildDirectory)
* @see #DefaultGCCDependencyCalculator2Commands(IPath source, IResource resource, IBuildObject buildContext, ITool tool, IPath topBuildDirectory)
*/
public DefaultGCCDependencyCalculator2Commands(IPath source, IBuildObject buildContext, ITool tool, IPath topBuildDirectory)
{
@ -177,7 +177,7 @@ public class DefaultGCCDependencyCalculator2Commands implements
}
if( buildContext instanceof IResourceConfiguration || needExplicitRuleForFile ) {
IPath outPath = getDependencyFiles()[0];
// -MT"dependecy-file-name"
// -MT"dependency-file-name"
String optTxt = "-MT\"" + outPath.toString() + "\""; //$NON-NLS-1$ //$NON-NLS-2$
options[3] = optTxt;
} else {