Skip to content

Commit db34578

Browse files
committed
Make instance variables private
1 parent bcac4cf commit db34578

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

com.unity.mobile.notifications/Runtime/Android/Plugins/com/unity/androidnotifications/UnityNotificationManager.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ public class UnityNotificationManager extends BroadcastReceiver {
4545
private static ConcurrentHashMap<Integer, Notification.Builder> mScheduledNotifications = new ConcurrentHashMap();
4646
private static HashSet<Integer> mVisibleNotifications = new HashSet<>();
4747

48-
public Context mContext = null;
49-
protected Activity mActivity = null;
50-
protected Class mOpenActivity = null;
51-
protected UnityNotificationBackgroundThread mBackgroundThread;
52-
protected Random mRandom;
48+
private Context mContext = null;
49+
private Activity mActivity = null;
50+
private Class mOpenActivity = null;
51+
private UnityNotificationBackgroundThread mBackgroundThread;
52+
private Random mRandom;
5353

5454
static final String TAG_UNITY = "UnityNotifications";
5555

0 commit comments

Comments
 (0)