Ratio #86

Merged
louis_royer merged 13 commits from ratio into etape5 2020-03-28 19:44:40 +01:00
Showing only changes of commit a5b1abc9a8 - Show all commits

View File

@ -124,7 +124,9 @@ public abstract class FileWatcher implements Runnable {
*/
public void setStop() {
stop = true;
thread.interrupt();
if (thread != null) {
thread.interrupt();
}
}
/** Init sha512 map.