Skip to content

Commit

Permalink
chore: Code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
dansiegel committed Sep 10, 2023
1 parent ac2894e commit e1b2f04
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Prism.Core/Navigation/NavigationException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public NavigationException(string message, string navigationKey, Exception inner
{
}

public NavigationException(string message, object view, Exception innerException)
public NavigationException(string message, object view, Exception innerException)
: this(message, null, view, innerException)
{
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public IRegion Initialize(object regionTarget, string regionName)

var region = new MockPresentationRegion();
if (regionTarget is VisualElement element)
RegionManager.GetObservableRegion(element).Value = region;
RegionManager.GetObservableRegion(element).Value = region;

// Fire update regions again. This also happens if a region is created and added to the RegionManager
if (Accessor != null)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
using System.Linq;
using System.Text;
using Prism.Forms.Regions.Mocks;
using Prism.Navigation.Regions.Adapters;
using Prism.Navigation.Regions;
using Prism.Navigation.Regions.Adapters;
using Xamarin.Forms;
using Xunit;

Expand Down

0 comments on commit e1b2f04

Please sign in to comment.