I want to stop auto build only when i add somme comments, because it will not affect my code. How can i tell eclipse IDE to not restart server after writing comments?
Asked
Active
Viewed 66 times
0
-
[Maybe you can turn off auto Building your project](https://stackoverflow.com/questions/15328183/java-eclipse-turn-off-auto-build-workspace-on-save) – GYOTO Nov 22 '21 at 09:24
-
The Project, Build automatically setting is all there is. It either rebuilds on every change, or not at all. – greg-449 Nov 22 '21 at 10:19
-
1Adding comments may not change the final byte code, but it definitely can change the line mapping information used in stack traces and when debugging. – nitind Nov 22 '21 at 15:57