From 27d45a5d4cd048e757aa2b8e1634cfadf3a1e4c7 Mon Sep 17 00:00:00 2001 From: Mark Czotter Date: Sun, 24 Sep 2023 22:15:46 +0200 Subject: [PATCH] fix(api): remove deprecated codeSystemUri property from generic concept --- .../com/b2international/snowowl/core/domain/Concept.java | 8 -------- 1 file changed, 8 deletions(-) diff --git a/core/com.b2international.snowowl.core/src/com/b2international/snowowl/core/domain/Concept.java b/core/com.b2international.snowowl.core/src/com/b2international/snowowl/core/domain/Concept.java index 635fd6109da..5ff97df4d63 100644 --- a/core/com.b2international.snowowl.core/src/com/b2international/snowowl/core/domain/Concept.java +++ b/core/com.b2international.snowowl.core/src/com/b2international/snowowl/core/domain/Concept.java @@ -84,14 +84,6 @@ public ResourceURI getCodeSystem() { return codeSystemUri; } - /** - * @return the codeSystem URI this concept is coming from - * @deprecated - since all code systems identifiable via URIs we can simplify the API and say {@link #getCodeSystem()} or in FHIR terms just system, but we don't go that far - */ - public ResourceURI getCodeSystemUri() { - return codeSystemUri; - } - public String getTerm() { return term; }