From 1f401d4ff798ac081f4c847c13e97d50723ead8b Mon Sep 17 00:00:00 2001 From: Mathias Lang Date: Sun, 17 Dec 2023 21:08:43 +0100 Subject: [PATCH] Trivial: Remove dead existsFile import It is not used in this function. --- source/dub/commandline.d | 1 - 1 file changed, 1 deletion(-) diff --git a/source/dub/commandline.d b/source/dub/commandline.d index d3367cb62..b4a1aa4f8 100644 --- a/source/dub/commandline.d +++ b/source/dub/commandline.d @@ -1987,7 +1987,6 @@ class AddCommand : Command { override int execute(Dub dub, string[] free_args, string[] app_args) { import dub.recipe.io : readPackageRecipe, writePackageRecipe; - import dub.internal.vibecompat.core.file : existsFile; enforceUsage(free_args.length != 0, "Expected one or more arguments."); enforceUsage(app_args.length == 0, "Unexpected application arguments.");