From 5c906241fe8061654c7b3c1d2df0e94535af788a Mon Sep 17 00:00:00 2001 From: Bertrik Sikken Date: Tue, 15 Aug 2017 20:18:40 +0200 Subject: [PATCH] Remove unused InterruptedException from stop() method. --- .../java/nl/sikken/bertrik/hab/habitat/HabitatUploader.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/workspace/ttnhabbridge/src/main/java/nl/sikken/bertrik/hab/habitat/HabitatUploader.java b/workspace/ttnhabbridge/src/main/java/nl/sikken/bertrik/hab/habitat/HabitatUploader.java index 0abf9e4..4502dd1 100644 --- a/workspace/ttnhabbridge/src/main/java/nl/sikken/bertrik/hab/habitat/HabitatUploader.java +++ b/workspace/ttnhabbridge/src/main/java/nl/sikken/bertrik/hab/habitat/HabitatUploader.java @@ -67,9 +67,8 @@ public final class HabitatUploader { /** * Stops the uploader process. - * @throws InterruptedException in case of a termination problem */ - public void stop() throws InterruptedException { + public void stop() { LOG.info("Stopping habitat uploader"); executor.shutdown(); LOG.info("Stopped habitat uploader");