Skip to content

Commit f86591c

Browse files
committedAug 9, 2024·
fix to hard-coded string values in public class DescriptionGenerator
Signed-off-by: mereolog <pawel.garbacz@makolab.com>
1 parent f728efb commit f86591c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎onto-viewer-core/src/main/java/org/edmcouncil/spec/ontoviewer/core/ontology/generator/DescriptionGenerator.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ public class DescriptionGenerator {
3232
public static final String INHERITED_DESCRIPTIONS_LABEL = "Inherited descriptions:";
3333
public static final String OWN_DESCRIPTIONS_LABEL = "Own descriptions:";
3434

35-
static final String IS_A_RESTRICTIONS_LABEL = "IS-A restrictions";
36-
static final String IS_A_RESTRICTIONS_INHERITED_LABEL = "IS-A restrictions inherited from superclasses";
35+
static final String IS_A_RESTRICTIONS_LABEL = "OWL restrictions";
36+
static final String IS_A_RESTRICTIONS_INHERITED_LABEL = "Inherited OWL restrictions";
3737
static final String ONTOLOGICAL_CHARACTERISTIC_LABEL = "Ontological characteristic";
3838

3939
private static final Logger LOGGER = LoggerFactory.getLogger(DescriptionGenerator.class);

0 commit comments

Comments
 (0)
Please sign in to comment.