1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Cosmetics.

This commit is contained in:
Sergey Prigogin 2011-01-06 03:12:30 +00:00
parent 3df7d3854f
commit 46b2750a00

View file

@ -9,7 +9,6 @@
* Contributors:
* Institute for Software - initial API and implementation
*******************************************************************************/
package org.eclipse.cdt.internal.ui.refactoring.implementmethod;
import java.util.ArrayList;
@ -37,7 +36,6 @@ import org.eclipse.cdt.internal.ui.refactoring.utils.NodeHelper;
* Findes the information that are needed to tell where a MethodDefinition of a certain method declaration should be inserted.
*
* @author Mirko Stocker, Lukas Felber
*
*/
public class MethodDefinitionInsertLocationFinder {
@ -86,7 +84,6 @@ public class MethodDefinitionInsertLocationFinder {
}
}
IPath path = file.getLocation().removeFileExtension().addFileExtension("cpp"); //$NON-NLS-1$
IFile fileForLocation = ResourcesPlugin.getWorkspace().getRoot().getFileForLocation(path);
@ -96,7 +93,6 @@ public class MethodDefinitionInsertLocationFinder {
return result;
}
/**
* Search the given class for all IASTSimpleDeclarations occuring before 'method' and return them in reverse order.
*