Skip to content

Commit 6275ce2

Browse files
committed
indentation and deletion of commented lines
1 parent a96d6a6 commit 6275ce2

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

Examples/ServiceExamples/Scripts/ExampleConversation.cs

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -87,11 +87,9 @@ private void OnMessageWithOnlyInput(MessageResponse resp, string customData)
8787

8888
if (resp.context.system.dialog_stack != null)
8989
{
90-
foreach (Dictionary<string, string> dialogNode in resp.context.system.dialog_stack)
91-
foreach(KeyValuePair<string, string> node in dialogNode)
92-
Log.Debug("ExampleConversation", "dialogNode: {0}", node.Value);
93-
//foreach ((Dictionary<string, string> dialogNode as Dictionary<string, string>) in resp.context.system.dialog_stack)
94-
// Log.Debug("ExampleConversation", "dialogNode: {0}", dialogNode.val);
90+
foreach (Dictionary<string, string> dialogNode in resp.context.system.dialog_stack)
91+
foreach(KeyValuePair<string, string> node in dialogNode)
92+
Log.Debug("ExampleConversation", "dialogNode: {0}", node.Value);
9593
}
9694
else
9795
{

0 commit comments

Comments
 (0)