diff --git a/AlgebraicDataflowArchitectureModel/src/application/editor/stages/DataFlowModelingStage.java b/AlgebraicDataflowArchitectureModel/src/application/editor/stages/DataFlowModelingStage.java index 48a2ca9..2708810 100644 --- a/AlgebraicDataflowArchitectureModel/src/application/editor/stages/DataFlowModelingStage.java +++ b/AlgebraicDataflowArchitectureModel/src/application/editor/stages/DataFlowModelingStage.java @@ -31,8 +31,8 @@ public class DataFlowModelingStage extends Stage { private HashMap resNodeToCell = new HashMap<>(); private HashMap channelToCell = new HashMap<>(); - private HashMap cellToResNode = new HashMap<>(); - private HashMap cellToChannel = new HashMap<>(); + private final HashMap cellToResNode = new HashMap<>(); + private final HashMap cellToChannel = new HashMap<>(); public DataFlowModelingStage(mxGraphComponent graphComponent) { super(graphComponent);