mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Fix for bug 68393 - ClassNotFoundException when starting Eclipse
This commit is contained in:
parent
ded9a06c42
commit
a93a1b97af
1 changed files with 0 additions and 8 deletions
|
@ -189,7 +189,6 @@ public class ManagedBuildManager extends AbstractCExtension implements IScannerI
|
||||||
}
|
}
|
||||||
catch (CoreException e) {
|
catch (CoreException e) {
|
||||||
// Probably not defined
|
// Probably not defined
|
||||||
ManagedBuilderCorePlugin.log(e);
|
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
@ -340,7 +339,6 @@ public class ManagedBuildManager extends AbstractCExtension implements IScannerI
|
||||||
}
|
}
|
||||||
catch (CoreException e) {
|
catch (CoreException e) {
|
||||||
// Probably not defined
|
// Probably not defined
|
||||||
ManagedBuilderCorePlugin.log(e);
|
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
@ -377,7 +375,6 @@ public class ManagedBuildManager extends AbstractCExtension implements IScannerI
|
||||||
}
|
}
|
||||||
catch (CoreException e) {
|
catch (CoreException e) {
|
||||||
// Probably not defined
|
// Probably not defined
|
||||||
ManagedBuilderCorePlugin.log(e);
|
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
@ -682,7 +679,6 @@ public class ManagedBuildManager extends AbstractCExtension implements IScannerI
|
||||||
buildInfo = findBuildInfo(resource.getProject());
|
buildInfo = findBuildInfo(resource.getProject());
|
||||||
initBuildInfoContainer(buildInfo);
|
initBuildInfoContainer(buildInfo);
|
||||||
} catch (CoreException e) {
|
} catch (CoreException e) {
|
||||||
ManagedBuilderCorePlugin.log(e);
|
|
||||||
return new Status(IStatus.ERROR,
|
return new Status(IStatus.ERROR,
|
||||||
ManagedBuilderCorePlugin.getUniqueIdentifier(),
|
ManagedBuilderCorePlugin.getUniqueIdentifier(),
|
||||||
IStatus.ERROR,
|
IStatus.ERROR,
|
||||||
|
@ -796,7 +792,6 @@ public class ManagedBuildManager extends AbstractCExtension implements IScannerI
|
||||||
project.setSessionProperty(buildInfoProperty, buildInfo);
|
project.setSessionProperty(buildInfoProperty, buildInfo);
|
||||||
}
|
}
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
ManagedBuilderCorePlugin.log(e);
|
|
||||||
buildInfo = null;
|
buildInfo = null;
|
||||||
}
|
}
|
||||||
return buildInfo;
|
return buildInfo;
|
||||||
|
@ -901,7 +896,6 @@ public class ManagedBuildManager extends AbstractCExtension implements IScannerI
|
||||||
resource.setSessionProperty(buildInfoProperty, buildInfo);
|
resource.setSessionProperty(buildInfoProperty, buildInfo);
|
||||||
} catch (CoreException e) {
|
} catch (CoreException e) {
|
||||||
// There is no point in keeping the info around if it isn't associated with the project
|
// There is no point in keeping the info around if it isn't associated with the project
|
||||||
ManagedBuilderCorePlugin.log(e);
|
|
||||||
buildInfo = null;
|
buildInfo = null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -977,7 +971,6 @@ public class ManagedBuildManager extends AbstractCExtension implements IScannerI
|
||||||
buildInfo.updateOwner(resource);
|
buildInfo.updateOwner(resource);
|
||||||
}
|
}
|
||||||
} catch (CoreException e) {
|
} catch (CoreException e) {
|
||||||
ManagedBuilderCorePlugin.log(e);
|
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -991,7 +984,6 @@ public class ManagedBuildManager extends AbstractCExtension implements IScannerI
|
||||||
initBuildInfoContainer(buildInfo);
|
initBuildInfoContainer(buildInfo);
|
||||||
} catch (CoreException e) {
|
} catch (CoreException e) {
|
||||||
// We can live without a path entry container if the build information is valid
|
// We can live without a path entry container if the build information is valid
|
||||||
ManagedBuilderCorePlugin.log(e);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return buildInfo;
|
return buildInfo;
|
||||||
|
|
Loading…
Add table
Reference in a new issue