Skip to content

Commit 1ae3e4f

Browse files
committed
Fix format
1 parent c423eba commit 1ae3e4f

File tree

1 file changed

+4
-4
lines changed
  • TestProjects/com.unity.mobile-notifications-sample/Assets/Scripts

1 file changed

+4
-4
lines changed

TestProjects/com.unity.mobile-notifications-sample/Assets/Scripts/AndroidTest.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ private void InstantiateAllTestButtons()
123123
m_groups["Modify"]["Modify pending Explicit notification"] = new Action(() => { ModifyExplicitNotification(); });
124124
m_groups["Modify"]["Cancel pending Explicit notification"] = new Action(() => { CancelExplicitNotification(); });
125125
m_groups["Modify"]["Check status of Explicit notification"] = new Action(() => { CheckStatusOfExplicitNotification (); });
126-
126+
127127

128128
m_groups["Send"] = new OrderedDictionary();
129129
foreach (AndroidNotificationTemplate template in Resources.LoadAll("AndroidNotifications", typeof(AndroidNotificationTemplate)))
@@ -135,7 +135,7 @@ private void InstantiateAllTestButtons()
135135
{
136136
Title = template.Title,
137137
Text = template.Text,
138-
138+
139139
SmallIcon = template.SmallIcon,
140140
LargeIcon = template.LargeIcon,
141141
Style = template.NotificationStyle,
@@ -244,7 +244,7 @@ private void InstantiateAllTestButtons()
244244
ButtonCancelExplicitID.interactable = false;
245245
ButtonCheckStatusExplicitID = GameObject.Find("Modify/Check status of Explicit notification").GetComponent<Button>();
246246
ButtonCheckStatusExplicitID.interactable = false;
247-
247+
248248
m_gameObjectReferences.ButtonGroupTemplate.gameObject.SetActive(false);
249249
}
250250

@@ -274,7 +274,7 @@ public void CheckStatusOfExplicitNotification()
274274
{
275275
m_LOGGER
276276
.Blue($"[{DateTime.Now.ToString("HH:mm:ss.ffffff")}] Explicit notification (ID:{notificationExplicitID}) status: {AndroidNotificationCenter.CheckScheduledNotificationStatus(notificationExplicitID)}");
277-
277+
278278
}
279279

280280
public void SendNotification(AndroidNotification notification, string channel = "default_channel", int notificationID = 0, bool log = true)

0 commit comments

Comments
 (0)