mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 06:32:10 +02:00
bug 319737: Unnecessary semicolons in managedbuilder.core
patch from Petri Tuononen
This commit is contained in:
parent
016c840b51
commit
be965d0528
3 changed files with 3 additions and 3 deletions
|
@ -515,7 +515,7 @@ public class Builder extends BuildObject implements IBuilder, IMatchKeyProvider,
|
|||
customizedEnvironment = (HashMap)MapStorageElement.decodeMap(tmp);
|
||||
tmp = element.getAttribute(ATTRIBUTE_APPEND_ENVIRONMENT);
|
||||
if(tmp != null)
|
||||
appendEnvironment = Boolean.valueOf(tmp);;
|
||||
appendEnvironment = Boolean.valueOf(tmp);
|
||||
buildPath = element.getAttribute(ATTRIBUTE_BUILD_PATH);
|
||||
tmp = element.getAttribute(ATTRIBUTE_CUSTOM_PROPS);
|
||||
if(tmp != null)
|
||||
|
|
|
@ -87,7 +87,7 @@ public class ModificationStatus extends Status implements IModificationStatus {
|
|||
}
|
||||
|
||||
if(nonMbsTools != null && nonMbsTools.length != 0){
|
||||
fNonManagedBuildTools = nonMbsTools.clone();;
|
||||
fNonManagedBuildTools = nonMbsTools.clone();
|
||||
flags |= TOOLS_DONT_SUPPORT_MANAGED_BUILD;
|
||||
severity = IStatus.ERROR;
|
||||
} else {
|
||||
|
|
|
@ -699,7 +699,7 @@ class UpdateManagedProject12 {
|
|||
// Backup the file
|
||||
monitor.beginTask(ConverterMessages.getFormattedString("UpdateManagedProject12.0", projectName), 1); //$NON-NLS-1$
|
||||
IManagedBuildInfo info = ManagedBuildManager.getBuildInfo(project);
|
||||
UpdateManagedProjectManager.backupFile(file, "_12backup", monitor, project); ; //$NON-NLS-1$
|
||||
UpdateManagedProjectManager.backupFile(file, "_12backup", monitor, project); //$NON-NLS-1$
|
||||
|
||||
IManagedProject newProject = null;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue