Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@

private void AddFlowShape(NodeFlowShapes shape, string id, int index)
{
var node = new Node
Node node = new Node
{
ID = id,
Shape = new FlowShape { Type = NodeShapes.Flow, Shape = shape },
Expand All @@ -117,7 +117,7 @@

private void AddBasicShape(NodeBasicShapes shapeType, string id, int index)
{
var node = new Node
Node node = new Node
{
ID = id,
Width = 60,
Expand Down Expand Up @@ -146,7 +146,7 @@

private void AddConnector(string id, ConnectorSegmentType type, DecoratorShape decoratorShape, int index)
{
var connector = new Connector
Connector connector = new Connector
{
ID = id,
Type = type,
Expand Down