From 5704397b7400f8f6b3dbcfd91dfb83968aff1af5 Mon Sep 17 00:00:00 2001 From: "Tristan B. Velloza Kildaire" Date: Mon, 2 Oct 2023 22:00:18 +0200 Subject: [PATCH] Client - Removed duplicate semicolons --- source/dante/client.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/dante/client.d b/source/dante/client.d index df392f5..d364714 100644 --- a/source/dante/client.d +++ b/source/dante/client.d @@ -107,7 +107,7 @@ public class DanteClient // TODO: Wrap a tristanable `dequeue()` in a FutureTask via guillotine and return that Queue uniqueQueue = this.manager.getUniqueQueue(); - return makeRequest(msg, uniqueQueue);; + return makeRequest(msg, uniqueQueue); }