Browse Source

Merge branch 'Ohne_Drag_and_Drop' of https://git.tk.informatik.tu-darmstadt.de/carlos.garcia/praktikum-holons into Ohne_Drag_and_Drop

Edgardo Palza 8 years ago
parent
commit
4482c993e1
1 changed files with 3 additions and 3 deletions
  1. 3 3
      src/ui/controller/AutoSaveController.java

+ 3 - 3
src/ui/controller/AutoSaveController.java

@@ -31,9 +31,9 @@ public class AutoSaveController {
 
 	public void decreaseAutoSaveNr() {
 		currentSave = MODEL.getAutoSaveNr() - 1;
-		if (currentSave < 0) {
-			currentSave = max;
-		}
+//		if (currentSave < 0) {
+//			currentSave = max;
+//		}
 		MODEL.setAutoSaveNr(currentSave);
 	}