From 3e09e1276523dca4ff44e069ae6e9bed0118a85a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20K=C3=BCrten?= <sebastian@mobanisto.de> Date: Thu, 4 Nov 2021 15:13:13 +0100 Subject: [PATCH] Fix overly long line in TaskScheduler --- .../org/briarproject/mailbox/core/system/TaskScheduler.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mailbox-core/src/main/java/org/briarproject/mailbox/core/system/TaskScheduler.java b/mailbox-core/src/main/java/org/briarproject/mailbox/core/system/TaskScheduler.java index 91729ed0..be1f59c7 100644 --- a/mailbox-core/src/main/java/org/briarproject/mailbox/core/system/TaskScheduler.java +++ b/mailbox-core/src/main/java/org/briarproject/mailbox/core/system/TaskScheduler.java @@ -32,7 +32,8 @@ public interface TaskScheduler { /** * Cancels the task if it has not already started running. If the task - * is {@link #scheduleWithFixedDelay(Runnable, Executor, long, long, TimeUnit) periodic}, + * is {@link #scheduleWithFixedDelay(Runnable, Executor, long, long, + * TimeUnit) periodic}, * all future executions of the task are cancelled. */ void cancel(); -- GitLab