public ChangelogEntry()

in log4j-changelog/src/main/java/org/apache/logging/log4j/changelog/ChangelogEntry.java [102:111]


    public ChangelogEntry(
            final Type type,
            final List<Issue> issues,
            final List<Author> authors,
            final Description description) {
        this.type = type;
        this.issues = issues;
        this.authors = authors;
        this.description = description;
    }