From c1869dfddf4e15f7591d478bc6006fba2db45f69 Mon Sep 17 00:00:00 2001 From: Adam R Claxton Date: Tue, 25 Apr 2017 11:47:46 -0400 Subject: [PATCH] Classpath, project facets --- .settings/org.eclipse.wst.common.project.facet.core.xml | 2 +- src/utilities/AdminNotificationQueue.java | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.settings/org.eclipse.wst.common.project.facet.core.xml b/.settings/org.eclipse.wst.common.project.facet.core.xml index 059c316..5254eab 100644 --- a/.settings/org.eclipse.wst.common.project.facet.core.xml +++ b/.settings/org.eclipse.wst.common.project.facet.core.xml @@ -1,6 +1,6 @@ - + diff --git a/src/utilities/AdminNotificationQueue.java b/src/utilities/AdminNotificationQueue.java index 2c39636..b53f26a 100644 --- a/src/utilities/AdminNotificationQueue.java +++ b/src/utilities/AdminNotificationQueue.java @@ -49,6 +49,9 @@ public void run() { case "adminUrgentRequest": new Mail(admin).sendUrgentRequest(tickets); break; + case "adminDeviceRequest": + queueRequestNotification(); + break; default: System.out.println("Admin notification queue could not recognize instructions"); } @@ -57,6 +60,9 @@ public void run() { e.printStackTrace(); } finally { + } + queueRequestNotification() { + } } }