From b25309ce59a475f8dae021f9972732e9f27de475 Mon Sep 17 00:00:00 2001 From: drhaynes Date: Mon, 22 Jan 2024 15:39:30 +0000 Subject: [PATCH] Remove unused result enum --- Sources/Config/Property.swift | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Sources/Config/Property.swift b/Sources/Config/Property.swift index d0bf8b7..e904e14 100644 --- a/Sources/Config/Property.swift +++ b/Sources/Config/Property.swift @@ -169,11 +169,6 @@ enum PropertyType: String { } } - private enum EnvResult { - case defined(String) - case undefined - } - private func produceEnvironmentVariable(for value: String?, generationBehaviour: GenerationBehaviour) -> String { guard let environmentVariableName = value, let rawValue = getenv(environmentVariableName),