Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ public void setScore(HardSoftScore score) {
// ************************************************************************

@ProblemFactCollectionProperty
private List<CourseConflict>
public List<CourseConflict>
calculateCourseConflictList() {
List<CourseConflict> courseConflictList =
new ArrayList<>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,14 @@ public Machine[] getAllMachines() {
return allMachines;
}

public Machine getMachine() {
return machine;
}

public void setMachine(Machine machine) {
this.machine = machine;
}

public Job getPreviousJob() {
return previousJob;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ public void setScore(HardSoftLongScore score) {
@ProblemFactCollectionProperty
@JsonIgnore
@SuppressWarnings("unused")
private List<MrServiceDependency>
public List<MrServiceDependency>
getServiceDependencyList() {
List<MrServiceDependency> serviceDependencyList =
new ArrayList<>(serviceList.size() * 5);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ public String getTitle() {
}

@SuppressWarnings("unused")
protected void updateStartTime() {
public void updateStartTime() {
if (employee == null) {
startTime = null;
} else if (previousTask == null) {
Expand Down
Loading