Skip to content
This repository has been archived by the owner on Nov 29, 2024. It is now read-only.

Commit

Permalink
remove NotNull annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
kt86 committed Nov 15, 2024
1 parent 198861c commit aed7ada
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@
import java.io.IOException;
import java.util.*;

import jakarta.validation.constraints.NotNull;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.matsim.api.core.v01.Id;
Expand Down Expand Up @@ -171,7 +170,7 @@ private static Config prepareConfig(String[] args) {
return config;
}

private static @NotNull Controler prepareControler(Scenario scenario) {
private static Controler prepareControler(Scenario scenario) {
log.info("Prepare controler");
Controler controler = new Controler(scenario);
controler.addOverridingModule(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
import java.io.IOException;
import java.util.*;

import jakarta.validation.constraints.NotNull;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.matsim.analysis.personMoney.PersonMoneyEventsAnalysisModule;
Expand Down Expand Up @@ -159,7 +158,7 @@ private static Config prepareConfig(String[] args) {
return config;
}

private static @NotNull Controler prepareControler(Scenario scenario, RoadPricingScheme rpScheme) {
private static Controler prepareControler(Scenario scenario, RoadPricingScheme rpScheme) {
log.info("Prepare controler");
Controler controler = new Controler(scenario);
controler.addOverridingModule(
Expand Down

0 comments on commit aed7ada

Please sign in to comment.