Mohammad Fajar
Mohammad Fajar

Reputation: 1007

Error in scala IDE

I not really understand what this error means? This is occur when I delete some source file. Is there any good IDE for scala development beside eclipse?

enter image description here

Upvotes: 0

Views: 102

Answers (1)

dhg
dhg

Reputation: 52681

If you delete a file, sometimes the IDE doesn't catch that it needs to recompile, and so it gets confused about what happened to the file.

To fix, go to Project -> Clean... and clean the project. This will force it to inspect the files and recompile.

Upvotes: 1

Related Questions