Fix FileMonitor.WriteAllLinesWithRetries (#1186)

This commit is contained in:
ORelio 2020-08-08 14:08:11 +02:00
parent ce83cc0a33
commit 1485612f29

View file

@ -147,6 +147,7 @@ namespace MinecraftClient
try try
{ {
File.WriteAllLines(filePath, lines, encoding); File.WriteAllLines(filePath, lines, encoding);
return;
} }
catch (IOException) catch (IOException)
{ {