Étape 5 #84

Merged
louis_royer merged 19 commits from etape5 into master 2020-03-30 15:23:11 +02: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.