Skip to content

Commit

Permalink
WEBITOOLS-199: Resolves inconsistent order of log messages
Browse files Browse the repository at this point in the history
  • Loading branch information
CAST-ANJ committed Sep 5, 2023
1 parent dc54131 commit 6c74499
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
package com.castsoftware.aip.console.tools.core.dto.jobs;

import java.util.Set;
import java.util.List;

public class LogContentDto {
private boolean endOfFile;
private int nbLines;
private int startOffset;
private Set<LogLine> lines;
private List<LogLine> lines;

public boolean isEndOfFile() {
return endOfFile;
Expand All @@ -32,11 +32,11 @@ public void setStartOffset(int startOffset) {
this.startOffset = startOffset;
}

public Set<LogLine> getLines() {
public List<LogLine> getLines() {
return lines;
}

public void setLines(Set<LogLine> lines) {
public void setLines(List<LogLine> lines) {
this.lines = lines;
}
}

0 comments on commit 6c74499

Please sign in to comment.