Added missing constuctor for RedactionLog

This commit is contained in:
deiflaender 2020-09-02 14:56:48 +02:00
parent d95ff5e5cf
commit c27c9b2f59

View File

@ -11,6 +11,13 @@ import lombok.NoArgsConstructor;
@NoArgsConstructor
public class RedactionLog {
public RedactionLog(List<RedactionLogEntry> redactionLogEntry, long dictionaryVersion, long rulesVersion) {
this.redactionLogEntry = redactionLogEntry;
this.dictionaryVersion = dictionaryVersion;
this.rulesVersion = rulesVersion;
}
private List<RedactionLogEntry> redactionLogEntry;
private long dictionaryVersion = -1;