Skip to content

Commit 0acf10b

Browse files
Code cleanup.
1 parent 3a70584 commit 0acf10b

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

sdk/Notifo.SDK.FirebasePlugin/NotifoFirebasePlugin.ios.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
// All rights reserved. Licensed under the MIT license.
66
// ==========================================================================
77

8-
using System;
8+
using System;
99
using System.Threading.Tasks;
1010
using Foundation;
1111
using Notifo.SDK.Resources;
12+
using Notifo.SDK;
1213
using Plugin.FirebasePushNotification;
1314
using Serilog;
14-
using Notifo.SDK;
15-
using UserNotifications;
15+
using UserNotifications;
1616

1717
namespace Notifo.SDK.FirebasePlugin
1818
{

sdk/Notifo.SDK/Extensions/LoggerExtensions.android.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@ internal static class LoggerExtensions
1414
{
1515
public static LoggerConfiguration PlatformSink(this LoggerSinkConfiguration configuration)
1616
{
17-
return configuration.AndroidLog()
18-
.Enrich.WithProperty(Serilog.Core.Constants.SourceContextPropertyName, "Notifo");
17+
return configuration.AndroidLog().Enrich.WithProperty(Serilog.Core.Constants.SourceContextPropertyName, "Notifo");
1918
}
2019
}
2120
}

sdk/Notifo.SDK/NotifoMobilePush/NotifoMobilePushImplementation.shared.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
// Copyright (c) Sebastian Stehle
55
// All rights reserved. Licensed under the MIT license.
66
// ==========================================================================
7+
78
using System;
89
using System.Net.Http;
910
using Notifo.SDK.CommandQueue;

sdk/Notifo.SDK/NotifoMobilePush/NotifoMobilePushImplementation.tracking.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ public async Task<HashSet<Guid>> GetSeenNotificationsAsync()
3434
catch (Exception ex)
3535
{
3636
Log.Error(Strings.TrackingException, ex);
37-
3837
return new HashSet<Guid>();
3938
}
4039
finally

0 commit comments

Comments
 (0)