Skip to content

Commit

Permalink
remove unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
saintentropy committed Oct 22, 2023
1 parent 105a2a6 commit 0dabf04
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions src/Libraries/CoreNodeModels/Remember.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ namespace CoreNodeModels
[DynamoServices.RegisterForTrace]
public class Remember : NodeModel
{
private bool _deactivateNode;
private string _cache = "";
private string _updatedToolTipText = "";

Expand Down Expand Up @@ -102,12 +101,6 @@ public override void Dispose()

public override IEnumerable<AssociativeNode> BuildOutputAst(List<AssociativeNode> inputAstNodes)
{
// Check that node can run
if (_deactivateNode)
{
return new[] { AstFactory.BuildAssignment(GetAstIdentifierForOutputIndex(0), AstFactory.BuildNullNode()) };
}

var resultAst = new List<AssociativeNode>();

var funtionInputs = new List<AssociativeNode> { inputAstNodes[0], AstFactory.BuildStringNode(Cache) };
Expand Down

0 comments on commit 0dabf04

Please sign in to comment.