Skip to content

Commit

Permalink
Clean the dependency file only on clean, not on resetCompilers (called
Browse files Browse the repository at this point in the history
from project close as well).
  • Loading branch information
dragos committed Apr 12, 2011
1 parent b68194e commit e0349a4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -488,12 +488,12 @@ class ScalaProject(val underlying: IProject) {
def clean(implicit monitor: IProgressMonitor) = {
underlying.deleteMarkers(plugin.problemMarkerId, true, IResource.DEPTH_INFINITE)
resetCompilers
if (buildManager0 != null)
buildManager0.clean(monitor)
cleanOutputFolders
}

def resetBuildCompiler(implicit monitor: IProgressMonitor) {
if (buildManager0 != null)
buildManager0.clean(monitor)
buildManager0 = null
hasBeenBuilt = false
}
Expand Down

0 comments on commit e0349a4

Please sign in to comment.