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

bug 319512: getTopBuildVariableList() removed as it doesn't return correct type and does not appear to be used anywhere

This commit is contained in:
Andrew Gvozdev 2010-08-22 03:02:06 +00:00
parent bbe979278f
commit f5a1f8aeb8

View file

@ -365,7 +365,7 @@ public class GnuMakefileGenerator implements IManagedBuilderMakefileGenerator2 {
private final HashMap<String, List<IPath>> buildOutVars = new HashMap<String, List<IPath>>();
// Map of dependency file build variable names to a List of GnuDependencyGroupInfo objects
private final HashMap<String, GnuDependencyGroupInfo> buildDepVars = new HashMap<String, GnuDependencyGroupInfo>();
private final LinkedHashMap topBuildOutVars = new LinkedHashMap();
private final LinkedHashMap<String, String> topBuildOutVars = new LinkedHashMap<String, String>();
// Dependency file variables
// private Vector dependencyMakefiles; // IPath's - relative to the top build directory or absolute
@ -4081,16 +4081,6 @@ public class GnuMakefileGenerator implements IManagedBuilderMakefileGenerator2 {
return fileList;
}
/**
* Returns the list of files associated with the build variable in the top makefile
*
* @param variable the variable name
* @return List
*/
public List getTopBuildVariableList(String variable) {
return (List)topBuildOutVars.get(variable);
}
/**
* Returns the map of build variables to list of files
*