Fixed method name
This commit is contained in:
parent
8e755e02c3
commit
bae57c6ea8
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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();
|
||||
|
||||
|
|
Loading…
Reference in New Issue