From 1506edd80d176e76f858047ea7abd21b1bd35ccd Mon Sep 17 00:00:00 2001 From: Sebastian Schuberth Date: Thu, 4 Apr 2024 13:39:18 +0200 Subject: [PATCH] chore(downloader): Remove the redundant `protected` enum qualifier Enums cannot be inherited from. Signed-off-by: Sebastian Schuberth --- downloader/src/main/kotlin/VcsHost.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/downloader/src/main/kotlin/VcsHost.kt b/downloader/src/main/kotlin/VcsHost.kt index 93db9d31203bb..cc75911cef799 100644 --- a/downloader/src/main/kotlin/VcsHost.kt +++ b/downloader/src/main/kotlin/VcsHost.kt @@ -39,7 +39,7 @@ enum class VcsHost( /** * The hostname of VCS host. */ - protected val hostname: String, + val hostname: String, /** * The VCS types the host supports.