Skip to content

Commit

Permalink
feat(400-rsr-1034): Add a private LNodeStatus to the SSD file
Browse files Browse the repository at this point in the history
- create Utils for new String Private creation

Signed-off-by: JAFFRE Guillaume <guillaume.jaffre@rte-france.com>
  • Loading branch information
GuillaumeJAFFRE committed Jul 3, 2024
1 parent c749291 commit 20c4391
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -175,10 +175,10 @@ public static TPrivate createPrivate(List<TCompasTopo> compasTopos) {
* @return the complete private
*/
public static TPrivate createStringPrivate(String privateType, String privateValue) {
TPrivate compasLNodeStatusPrivate = new TPrivate();
compasLNodeStatusPrivate.setType(privateType);
compasLNodeStatusPrivate.getContent().add(privateValue);
return compasLNodeStatusPrivate;
TPrivate tPrivate = new TPrivate();
tPrivate.setType(privateType);
tPrivate.getContent().add(privateValue);
return tPrivate;
}

/**
Expand Down

0 comments on commit 20c4391

Please sign in to comment.