Skip to content

Commit 903d028

Browse files
Magnus Raagaard Kjeldsentriceo
authored andcommitted
fix: Added missing getter and setter for the problemFile in the FileProblemProvider
1 parent a56b741 commit 903d028

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

benchmark/src/main/java/ai/timefold/solver/benchmark/impl/loader/FileProblemProvider.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,4 +74,11 @@ public String toString() {
7474
return problemFile.toString();
7575
}
7676

77+
public File getProblemFile() {
78+
return problemFile;
79+
}
80+
81+
public void setProblemFile(File problemFile) {
82+
this.problemFile = problemFile;
83+
}
7784
}

0 commit comments

Comments
 (0)