Skip to content

Commit

Permalink
Change listener delegate to private
Browse files Browse the repository at this point in the history
  • Loading branch information
shepherd-l committed Sep 26, 2023
1 parent b08c63b commit 2e6c229
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion com.onesignal.unity.ios/Runtime/iOSNotificationsManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ internal sealed class iOSNotificationsManager : INotificationsManager {
[DllImport("__Internal")] private static extern void _notificationsWillDisplayEventPreventDefault(string notificationId);
[DllImport("__Internal")] private static extern void _notificationsSetClickCallback(ClickListenerDelegate callback);

public delegate void PermissionListenerDelegate(bool permission);
private delegate void PermissionListenerDelegate(bool permission);
private delegate void WillDisplayListenerDelegate(string notification);
private delegate void ClickListenerDelegate(string notification, string resultActionId, string resultUrl);
private delegate void BooleanResponseDelegate(int hashCode, bool response);
Expand Down

0 comments on commit 2e6c229

Please sign in to comment.