0

I'm working on a Minecraft mod and I messed up big time, there is errors everywhere. Is there a way to exit Eclipse without saving? I remember exiting Eclipse not too long ago where my workspace didn't have a crap ton of errors.

Stephen Rauch
  • 47,830
  • 31
  • 106
  • 135

1 Answers1

0

When it comes to Eclipse: if you are seeing a bunch of new errors, that means your code has already compiled and thus has already been saved. You can revert via local history, however.

It is possible to turn off eclipse auto-saving before you attempt to run (and compile) your code... but that will just force you to manually save if you want to run (and compile) your code.

If you are adverse to using Version Control, you can always just duplicate your project as a new file before implementing major changes.

Anthony Audette
  • 124
  • 1
  • 8