diff --git a/libs/language-server/src/stdlib/domain/geo/ContryCode.jv b/libs/language-server/src/stdlib/domain/geo/ContryCode.jv deleted file mode 100644 index 60d5c492..00000000 --- a/libs/language-server/src/stdlib/domain/geo/ContryCode.jv +++ /dev/null @@ -1,18 +0,0 @@ -// SPDX-FileCopyrightText: 2024 Friedrich-Alexander-Universitat Erlangen-Nurnberg -// -// SPDX-License-Identifier: AGPL-3.0-only - -use * from "./CountryCodeAlpha2.jv"; -use * from "./CountryCodeAlpha3.jv"; -use * from "./CountryCodeNumeric.jv"; - -/** -* Any code (alppha2, alpha3, numeric) for countries as defined by ISO 3166. -*/ -publish valuetype CountryCode oftype text { - constraints: [ - CountryCodeAlpha2Constraint, - CountryCodeAlpha3Constraint, - CountryCodeNumericConstraint - ]; -} \ No newline at end of file