From bae57c6ea8f8bd1c91a55af971bc15995d6de037 Mon Sep 17 00:00:00 2001 From: Luca Frosini Date: Fri, 15 Jan 2021 17:57:06 +0100 Subject: [PATCH] Fixed method name --- .../java/org/gcube/informationsystem/types/impl/TypeImpl.java | 2 +- .../java/org/gcube/informationsystem/types/reference/Type.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/gcube/informationsystem/types/impl/TypeImpl.java b/src/main/java/org/gcube/informationsystem/types/impl/TypeImpl.java index d0f58b5..d79ab58 100644 --- a/src/main/java/org/gcube/informationsystem/types/impl/TypeImpl.java +++ b/src/main/java/org/gcube/informationsystem/types/impl/TypeImpl.java @@ -217,7 +217,7 @@ public class TypeImpl implements Type { @JsonGetter(value = CHANGELOG_PROPERTY) @JsonInclude(Include.NON_NULL) - public Map getChangelogwithVersionAsString() { + public Map getChangelogWithVersionAsString() { if(this.changelog==null) { return DEFAULT_CHANGELOG_MAP_KEY_AS_STRING; } diff --git a/src/main/java/org/gcube/informationsystem/types/reference/Type.java b/src/main/java/org/gcube/informationsystem/types/reference/Type.java index 0c56a00..ecb2c8a 100644 --- a/src/main/java/org/gcube/informationsystem/types/reference/Type.java +++ b/src/main/java/org/gcube/informationsystem/types/reference/Type.java @@ -42,7 +42,7 @@ public interface Type extends IdentifiableElement { public Map getChangelog(); @JsonGetter(value = CHANGELOG_PROPERTY) - public Map getChangelogwithVersionAsString(); + public Map getChangelogWithVersionAsString(); public boolean isAbstract();