Skip to content

Commit

Permalink
fix: keep renaming variables according to PR remarks
Browse files Browse the repository at this point in the history
Signed-off-by: LE SAULNIER Kevin <[email protected]>
  • Loading branch information
LE SAULNIER Kevin committed Sep 27, 2024
1 parent 5c4fdec commit efa4760
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ public GraphMetadata(@JsonProperty("components") List<Component> componentList,
@JsonProperty("wires") List<WireMetadata> wireMetadataList,
@JsonProperty("lines") List<LineMetadata> lineMetadataList,
@JsonProperty("feederInfos") List<FeederInfoMetadata> feederInfoMetadataList,
@JsonProperty("electricalNodeInfos") List<BusLegendInfoMetadata> busLegendInfoMetadataList,
@JsonProperty("busLegendInfos") List<BusLegendInfoMetadata> busLegendInfoMetadataList,
@JsonProperty("busInfos") List<BusInfoMetadata> busInfoMetadataList,
@JsonProperty("layoutParams") LayoutParameters layoutParams,
@JsonProperty("svgParams") SvgParameters svgParams) {
Expand Down Expand Up @@ -545,7 +545,7 @@ public BusLegendInfoMetadata getElectricalNodeInfoMetadata(String id) {
return electricalNodeInfoMetadataMap.get(id);
}

@JsonProperty("electricalNodeInfos")
@JsonProperty("busLegendInfos")
public List<BusLegendInfoMetadata> getElectricalNodeInfoMetadata() {
return ImmutableList.copyOf(electricalNodeInfoMetadataMap.values());
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public abstract class AbstractTestCase {

protected boolean debugJsonFiles = false;
protected boolean debugSvgFiles = false;
protected boolean overrideTestReferences = true;
protected boolean overrideTestReferences = false;

protected final ResourcesComponentLibrary componentLibrary = getResourcesComponentLibrary();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@
"side" : "TWO",
"componentType" : "ARROW_REACTIVE"
} ],
"electricalNodeInfos" : [ ],
"busLegendInfos" : [ ],
"busInfos" : [ ],
"layoutParams" : {
"verticalSpaceBus" : 25.0,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@
"side" : "ONE",
"componentType" : "ARROW_REACTIVE"
} ],
"electricalNodeInfos" : [ ],
"busLegendInfos" : [ ],
"busInfos" : [ ],
"layoutParams" : {
"verticalSpaceBus" : 25.0,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2915,7 +2915,7 @@
"side" : "ONE",
"componentType" : "ARROW_ACTIVE"
} ],
"electricalNodeInfos" : [ ],
"busLegendInfos" : [ ],
"busInfos" : [ ],
"layoutParams" : {
"verticalSpaceBus" : 25.0,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@
"side" : "ONE",
"componentType" : "ARROW_ACTIVE"
} ],
"electricalNodeInfos" : [ ],
"busLegendInfos" : [ ],
"busInfos" : [ ],
"layoutParams" : {
"verticalSpaceBus" : 25.0,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1444,7 +1444,7 @@
"side" : "ONE",
"componentType" : "ARROW_ACTIVE"
} ],
"electricalNodeInfos" : [ {
"busLegendInfos" : [ {
"id" : "NODE_vl1_0"
}, {
"id" : "NODE_vl1_2"
Expand Down

0 comments on commit efa4760

Please sign in to comment.