Skip to content

Commit 379fe48

Browse files
committed
dotnet format
1 parent 8ae44d0 commit 379fe48

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

Source/NETworkManager.Models/Network/NetworkInterface.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ private static IPAddress DetectLocalIPAddressFromRouting(IPAddress remoteIPAddre
231231

232232
if (socket.LocalEndPoint is IPEndPoint ipAddress)
233233
return ipAddress.Address;
234-
}
234+
}
235235
catch (SocketException) { }
236236

237237
return null;

Source/NETworkManager.Profiles/ProfileManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -479,7 +479,7 @@ public static void Save()
479479

480480
return;
481481
}
482-
482+
483483

484484
Directory.CreateDirectory(GetProfilesFolderLocation());
485485

Source/NETworkManager/ViewModels/IPScannerViewModel.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -729,8 +729,9 @@ public void OnClose()
729729
private void HostScanned(object sender, IPScannerHostScannedArgs e)
730730
{
731731
Application.Current.Dispatcher.BeginInvoke(DispatcherPriority.Normal,
732-
new Action(delegate {
733-
Results.Add(e.Args);
732+
new Action(delegate
733+
{
734+
Results.Add(e.Args);
734735
}));
735736
}
736737

0 commit comments

Comments
 (0)