Automatically stop auxiliary application after run in Java Free
Currently I run my code by clicking auxiliary application -> start, and after running I have to click stop.
Although this does not affect the functionality of my code even if I do not click stop, is there a way to stop the aux app somehow in the stop method? Just to save a click
public static void start () {
do_something();
}
public static void stop () {
}
