Skip to content

Commit 154c4df

Browse files
Merge pull request #88 from AndreasReitberger/housekeeping/fix-codeformatting
[housekeeping] Automated PR to fix formatting errors
2 parents 8f02443 + adc1967 commit 154c4df

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/SharedMauiCoreLibrary.Licensing/LicenseManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ public async Task<ILicenseQueryResult> DeactivateLicenseAsync(ILicenseInfo licen
242242
//break;
243243
}
244244
if (result.Success)
245-
{
245+
{
246246
OnSuccess?.Invoke();
247247
CurrentLicense = null;
248248
}

src/SharedMauiCoreLibrary/Interfaces/IFilterItem.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
public interface IFilterItem
44
{
55
#region Properties
6-
public Type TargetType { get; set; }
6+
public Type TargetType { get; set; }
77
public string SearchText { get; set; }
88

99
#endregion

src/SharedMauiCoreLibrary/Models/Theme/ColorInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public partial class ColorInfo : ObservableObject
1818
Color color;
1919
partial void OnColorChanged(Color value)
2020
{
21-
if(string.IsNullOrEmpty(Name))
21+
if (string.IsNullOrEmpty(Name))
2222
Name = value?.ToArgbHex();
2323
}
2424

src/SharedMauiCoreLibrary/Models/ViewModelBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ partial void OnIsLoadingDataCounterChanged(int value)
3737
partial void OnIsBusyCounterChanged(int value)
3838
{
3939
// Avoid negative values
40-
if(value < 0) IsBusyCounter = 0;
40+
if (value < 0) IsBusyCounter = 0;
4141
IsBusy = value > 0;
4242
}
4343

src/SharedMauiCoreLibrary/Services/DeviceProviderService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
namespace AndreasReitberger.Shared.Core.Services
22
{
3-
// Somehow has trouble with .NET 6
3+
// Somehow has trouble with .NET 6
44
#if ANDROID || IOS || MACCATALYST || WINDOWS
55
public partial class DeviceProviderService
66
{

0 commit comments

Comments
 (0)