From 2cac0553590aba2900e39353cc504a3d59294311 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Ba=C4=8Do?= Date: Thu, 10 Oct 2024 08:07:41 +0000 Subject: [PATCH] Remove duplication --- src/Runtimes/Runtimes.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Runtimes/Runtimes.php b/src/Runtimes/Runtimes.php index 8b5a9a9..9fabcb0 100644 --- a/src/Runtimes/Runtimes.php +++ b/src/Runtimes/Runtimes.php @@ -103,7 +103,6 @@ public function __construct(string $version = '') $kotlin->addVersion('1.8', 'eclipse-temurin:19-jdk-alpine', 'openruntimes/kotlin:'.$this->version.'-1.8', [System::X86, System::ARM64, System::ARMV7, System::ARMV8]); $kotlin->addVersion('1.9', 'eclipse-temurin:19-jdk-alpine', 'openruntimes/kotlin:'.$this->version.'-1.9', [System::X86, System::ARM64, System::ARMV7, System::ARMV8]); $kotlin->addVersion('2.0', 'eclipse-temurin:22-jdk-alpine', 'openruntimes/kotlin:'.$this->version.'-2.0', [System::X86, System::ARM64, System::ARMV7, System::ARMV8]); - $kotlin->addVersion('2.0', 'eclipse-temurin:22-jdk-alpine', 'openruntimes/kotlin:'.$this->version.'-2.0', [System::X86, System::ARM64, System::ARMV7, System::ARMV8]); $this->runtimes['kotlin'] = $kotlin; $cpp = new Runtime('cpp', 'C++', 'sh helpers/server.sh');