aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/java
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/java')
-rw-r--r--app/src/main/java/ml/docilealligator/infinityforreddit/PullNotificationWorker.java7
1 files changed, 0 insertions, 7 deletions
diff --git a/app/src/main/java/ml/docilealligator/infinityforreddit/PullNotificationWorker.java b/app/src/main/java/ml/docilealligator/infinityforreddit/PullNotificationWorker.java
index ebabe07c..ad25f171 100644
--- a/app/src/main/java/ml/docilealligator/infinityforreddit/PullNotificationWorker.java
+++ b/app/src/main/java/ml/docilealligator/infinityforreddit/PullNotificationWorker.java
@@ -70,13 +70,6 @@ public class PullNotificationWorker extends Worker {
try {
List<Account> accounts = mRedditDataRoomDatabase.accountDao().getAllAccounts();
int color = mCustomThemeWrapper.getColorPrimaryLightTheme();
- NotificationManagerCompat testManager = NotificationUtils.getNotificationManager(context);
- NotificationCompat.Builder test = NotificationUtils.buildNotification(testManager,
- context, "Test", "Test body", "Test summary",
- NotificationUtils.CHANNEL_ID_NEW_MESSAGES,
- NotificationUtils.CHANNEL_NEW_MESSAGES,
- NotificationUtils.getAccountGroupName("Test"), color);
- testManager.notify(9765, test.build());
for (int accountIndex = 0; accountIndex < accounts.size(); accountIndex++) {
Account account = accounts.get(accountIndex);