Added missing constuctor for RedactionLog
This commit is contained in:
parent
d95ff5e5cf
commit
c27c9b2f59
@ -11,6 +11,13 @@ import lombok.NoArgsConstructor;
|
|||||||
@NoArgsConstructor
|
@NoArgsConstructor
|
||||||
public class RedactionLog {
|
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 List<RedactionLogEntry> redactionLogEntry;
|
||||||
|
|
||||||
private long dictionaryVersion = -1;
|
private long dictionaryVersion = -1;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user