From a6b8c0812547a67b52ca9236792609aa2900cb9c Mon Sep 17 00:00:00 2001 From: Javier Cicchelli Date: Sat, 22 Feb 2025 00:54:33 +0100 Subject: [PATCH] Conformed the IDE enumeration in the library target to the Randomable protocol. --- Library/Sources/Public/Enumerations/IDE.swift | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/Library/Sources/Public/Enumerations/IDE.swift b/Library/Sources/Public/Enumerations/IDE.swift index 2c530ac..75db91e 100644 --- a/Library/Sources/Public/Enumerations/IDE.swift +++ b/Library/Sources/Public/Enumerations/IDE.swift @@ -3,9 +3,9 @@ public enum IDE: String { case xcode } -// MARK: - Extension +// MARK: - Randomable -extension IDE { +extension IDE: Randomable { // MARK: Functions @@ -14,7 +14,3 @@ extension IDE { } } - -// MARK: - CaseIterable - -extension IDE: CaseIterable {}