Skip to content

Commit

Permalink
change function name from decrypt to deserialize
Browse files Browse the repository at this point in the history
  • Loading branch information
kiranisaac committed Jan 28, 2015
1 parent a496c36 commit 8f997db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public static class PowershellJsonConverter
private const string PsCommandParamInputObject = "InputObject";
private const string PsCommandParamDepth = "Depth";

public static PSObject Decrypt(string json)
public static PSObject Deserialize(string json)
{
if (String.IsNullOrEmpty(json))
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public Variable(AutomationManagement.Models.Variable variable, string automation
}
else
{
this.Value = PowershellJsonConverter.Decrypt(variable.Properties.Value);
this.Value = PowershellJsonConverter.Deserialize(variable.Properties.Value);
}

this.Description = variable.Properties.Description;
Expand Down

0 comments on commit 8f997db

Please sign in to comment.