Fixed method name

This commit is contained in:
Luca Frosini 2021-01-15 17:57:06 +01:00
parent 8e755e02c3
commit bae57c6ea8
2 changed files with 2 additions and 2 deletions

View File

@ -217,7 +217,7 @@ public class TypeImpl implements Type {
@JsonGetter(value = CHANGELOG_PROPERTY)
@JsonInclude(Include.NON_NULL)
public Map<String, String> getChangelogwithVersionAsString() {
public Map<String, String> getChangelogWithVersionAsString() {
if(this.changelog==null) {
return DEFAULT_CHANGELOG_MAP_KEY_AS_STRING;
}

View File

@ -42,7 +42,7 @@ public interface Type extends IdentifiableElement {
public Map<TypeVersion, String> getChangelog();
@JsonGetter(value = CHANGELOG_PROPERTY)
public Map<String, String> getChangelogwithVersionAsString();
public Map<String, String> getChangelogWithVersionAsString();
public boolean isAbstract();