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

Commit

Permalink
comments
Browse files Browse the repository at this point in the history
  • Loading branch information
kt86 committed Jan 23, 2024
1 parent 1f233d9 commit b25da0d
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
import org.matsim.freight.logistics.shipment.LSPShipment;

final class ProximityStrategyFactory {
//This is ok so as long as it is **non-public**.
//Before making it public, it should be configurable either via config or Injection.
//KMT, KN (Jan'24)

private ProximityStrategyFactory() {} // class contains only static methods; do not instantiate

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
import org.matsim.freight.logistics.shipment.LSPShipment;

final class RandomDistributionAllShipmentsStrategyFactory {
//This is ok so as long as it is **non-public**.
//Before making it public, it should be configurable either via config or Injection.
//KMT, KN (Jan'24)

private
RandomDistributionAllShipmentsStrategyFactory() {} // class contains only static methods; do not
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@
import org.matsim.freight.logistics.shipment.LSPShipment;

class RandomShiftingStrategyFactory {
//This is ok so as long as it is **non-public**.
//Before making it public, it should be configurable either via config or Injection.
//KMT, KN (Jan'24)

private
RandomShiftingStrategyFactory() {} // class contains only static methods; do not instantiate.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@
import org.matsim.freight.logistics.shipment.LSPShipment;

class RebalancingStrategyFactory {
//This is ok so as long as it is **non-public**.
//Before making it public, it should be configurable either via config or Injection.
//KMT, KN (Jan'24)

private RebalancingStrategyFactory() {} // class contains only static methods; do not instantiate

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@
import org.matsim.freight.logistics.shipment.LSPShipment;

/*package-private*/ class RoundRobinDistributionAllShipmentsStrategyFactory {
//This is ok so as long as it is **non-public**.
//Before making it public, it should be configurable either via config or Injection.
//KMT, KN (Jan'24)

private
RoundRobinDistributionAllShipmentsStrategyFactory() {} // class contains only static methods; do
Expand Down

0 comments on commit b25da0d

Please sign in to comment.