mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2026-01-16 08:25:28 +00:00
Try to fix netf, once again into the breach
This commit is contained in:
@@ -486,7 +486,6 @@ public static class ASF {
|
||||
|
||||
private static async void OnChanged(object sender, FileSystemEventArgs e) {
|
||||
ArgumentNullException.ThrowIfNull(sender);
|
||||
|
||||
ArgumentNullException.ThrowIfNull(e);
|
||||
|
||||
if (string.IsNullOrEmpty(e.Name)) {
|
||||
@@ -568,7 +567,6 @@ public static class ASF {
|
||||
|
||||
private static async void OnCreated(object sender, FileSystemEventArgs e) {
|
||||
ArgumentNullException.ThrowIfNull(sender);
|
||||
|
||||
ArgumentNullException.ThrowIfNull(e);
|
||||
|
||||
if (string.IsNullOrEmpty(e.Name)) {
|
||||
@@ -706,7 +704,6 @@ public static class ASF {
|
||||
|
||||
private static async void OnDeleted(object sender, FileSystemEventArgs e) {
|
||||
ArgumentNullException.ThrowIfNull(sender);
|
||||
|
||||
ArgumentNullException.ThrowIfNull(e);
|
||||
|
||||
if (string.IsNullOrEmpty(e.Name)) {
|
||||
@@ -826,7 +823,6 @@ public static class ASF {
|
||||
|
||||
private static async void OnRenamed(object sender, RenamedEventArgs e) {
|
||||
ArgumentNullException.ThrowIfNull(sender);
|
||||
|
||||
ArgumentNullException.ThrowIfNull(e);
|
||||
|
||||
if (string.IsNullOrEmpty(e.OldName)) {
|
||||
|
||||
Reference in New Issue
Block a user