remove some old-deprecated methods that are not used anywhere. C3_BUILDER_WORK
authortimkelly
Tue, 03 Aug 2010 16:47:39 -0500
branchC3_BUILDER_WORK
changeset 1758 29124e454f1e
parent 1757 ec3c1e4702be
child 1761 bd89f0317b13
remove some old-deprecated methods that are not used anywhere.
builder/com.nokia.carbide.cdt.builder/src/com/nokia/carbide/cdt/builder/builder/CarbideCPPBuilder.java
--- a/builder/com.nokia.carbide.cdt.builder/src/com/nokia/carbide/cdt/builder/builder/CarbideCPPBuilder.java	Tue Aug 03 16:29:13 2010 -0500
+++ b/builder/com.nokia.carbide.cdt.builder/src/com/nokia/carbide/cdt/builder/builder/CarbideCPPBuilder.java	Tue Aug 03 16:47:39 2010 -0500
@@ -1012,27 +1012,7 @@
 
 		return true;
 	}
-	
-	/**
-	 * Generates the abld makefile if necessary.
-	 * Generates the makefile for the given mmp file if:
-	 * 	 1) the makefile for the mmp does not exist
-	 *   2) if the mmp or any of its includes is newer than the makefile
-	 *   3) the makefile does not have the necessary Carbide changes
-	 *   
-	 *   The command used will be 'abld [test] makefile platform mmpname'
-	 * @param config the build configuration context
-	 * @param launcher the Carbide launcher
-	 * @param componentPath the absolute file system path of the component
-	 * @param isTest true for test components, false otherwise
-	 * @return false if any makefile generation was necessary but failed, true otherwise
-	 * 
-	 * @deprecated use {@link #generateAbldMakefileIfNecessary(ICarbideBuildConfiguration, CarbideCommandLauncher, IPath, boolean, IProgressMonitor)} instead
-	 */
-	protected static boolean generateAbldMakefileIfNecessary(ICarbideBuildConfiguration config, CarbideCommandLauncher launcher, IPath componentPath, boolean isTest) {
-		return generateAbldMakefileIfNecessary(config, launcher, componentPath, isTest, new NullProgressMonitor());
-	}
-	
+		
 	/**
 	 * Generates the abld makefile if necessary.
 	 * Generates the makefile for the given mmp file if:
@@ -2022,44 +2002,6 @@
 		return allTokens;
 	}
 
-	/**
-	 * This method performs a build for a given Carbide build configuration.
-	 * @param config - The Carbide configuration to build
-	 * @param monitor - A progress monitor so user can cancel build (can be null)
-	 * @param console - Where to pipe the output. If null, a new CConole will be created and existing console cleared.
-	 * @param buildKind - FULL_BUILD, else incremental build assumed.
-	 * 
-	 * @deprecated use {@link #invokeBuild(ICarbideBuildConfiguration, IConsole, IProgressMonitor)} instead
-	 */
-	public static void callAbldBuildForConfiguration(ICarbideBuildConfiguration config, IProgressMonitor monitor, IConsole console, int buildKind, boolean clearMarkers){
-		
-		if (monitor == null) {
-			monitor = new NullProgressMonitor();
-		}
-		
-		if (console == null){
-			console = CCorePlugin.getDefault().getConsole();
-		}
-
-		CarbideCommandLauncher launcher = new CarbideCommandLauncher(config.getCarbideProject().getProject(), monitor, console, config.getErrorParserList(), config.getCarbideProject().getINFWorkingDirectory());
-		launcher.showCommand(true);
-
-		invokeBuild(config, launcher, monitor, clearMarkers);
-	}
-
-	/**
-	 * Check to see if abld.bat and the SDK's platform makefile exists. If either don't exist, re-generate makefiles
-	 * This also tests to make sure the makefile target is OLDER than the bld.inf file.
-	 * @param bldInfDir - The working dir of the bld.inf file (should not contain 'bld.inf')
-	 * @param defaultConfig - The ISymbianBuildConfiguration to be built.
-	 * @return true if makefiles need to be regenerated
-	 * 
-	 * @deprecated use {@link #needsBldmakeMakefileGeneration(ICarbideBuildConfiguration)}
-	 */
-	public static boolean projectNeedsMakefileGeneration(IPath bldInfDir, ICarbideBuildConfiguration defaultConfig){
-		return needsBldmakeMakefileGeneration(defaultConfig);
-	}
-
     /**
      * Checks the Problems view for any error markers.
      * @param project - IProject to check for problem markers