removed synchronized-block from writeLog() and writeStatistics() in TypeUnifyTask

This commit is contained in:
NoName11234 2024-01-18 21:21:42 +01:00
parent 301e9143ec
commit b806fa88ff

View File

@ -2609,7 +2609,6 @@ public class TypeUnifyTask extends RecursiveTask<Set<Set<UnifyPair>>> {
} }
void writeLog(String str) { void writeLog(String str) {
synchronized ( this ) {
if (log && finalresult) { if (log && finalresult) {
try { try {
logFile.write("Thread no.:" + thNo + "\n"); logFile.write("Thread no.:" + thNo + "\n");
@ -2617,18 +2616,15 @@ public class TypeUnifyTask extends RecursiveTask<Set<Set<UnifyPair>>> {
logFile.write("parallel:" + parallel + "\n"); logFile.write("parallel:" + parallel + "\n");
logFile.write(str+"\n\n"); logFile.write(str+"\n\n");
logFile.flush(); logFile.flush();
} }
catch (IOException e) { catch (IOException e) {
System.err.println("kein LogFile"); System.err.println("kein LogFile");
} }
} }
} }
}
void writeStatistics(String str) { void writeStatistics(String str) {
if (finalresult) { if (finalresult) {
synchronized ( this ) {
try { try {
statistics.write("Thread No. " + thNo + ": " + str + "\n"); statistics.write("Thread No. " + thNo + ": " + str + "\n");
statistics.flush(); statistics.flush();
@ -2637,6 +2633,6 @@ public class TypeUnifyTask extends RecursiveTask<Set<Set<UnifyPair>>> {
catch (IOException e) { catch (IOException e) {
System.err.println("kein StatisticsFile"); System.err.println("kein StatisticsFile");
} }
}} }
} }
} }