Skip to content

Commit

Permalink
chore: remove unused dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
triceo committed Nov 8, 2024
1 parent 8a162cc commit 3b6782f
Showing 1 changed file with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
import ai.timefold.solver.core.api.domain.entity.PlanningPin;
import ai.timefold.solver.core.api.domain.variable.PlanningVariable;

import org.apache.commons.text.WordUtils;

@PlanningEntity
public class MeetingAssignment extends AbstractPersistable {

Expand Down Expand Up @@ -117,11 +115,6 @@ public int getRequiredCapacity() {
return meeting.getRequiredCapacity();
}

public String getLabel() {
int wrapLength = Math.max(8 * meeting.getDurationInGrains(), 16);
return "<html><center>" + WordUtils.wrap(meeting.getTopic(), wrapLength, "<br/>", false) + "</center></html>";
}

@Override
public String toString() {
return meeting.toString();
Expand Down

0 comments on commit 3b6782f

Please sign in to comment.