Skip to content

Commit

Permalink
added new Plan setter and getter UnsupportedOperationException to LCP…
Browse files Browse the repository at this point in the history
…lan.java
  • Loading branch information
awagner committed Oct 13, 2023
1 parent f288e69 commit 805ed46
Showing 1 changed file with 31 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -285,4 +285,35 @@ else if (planElement instanceof Leg) {
destPlan.score = srcPlan.getScore();
}

@Override
public void setPlanId(String planId) {
throw new UnsupportedOperationException();

}

@Override
public String getPlanId() {
throw new UnsupportedOperationException();
}

@Override
public int getIterationCreated() {
throw new UnsupportedOperationException();
}

@Override
public void setIterationCreated(int iteration) {
throw new UnsupportedOperationException();
}

@Override
public String getPlanMutator() {
throw new UnsupportedOperationException();
}

@Override
public void setPlanMutator(String planMutator) {
throw new UnsupportedOperationException();
}

}

0 comments on commit 805ed46

Please sign in to comment.