Skip to content

Commit

Permalink
remove bad merge duplicate method
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom Laird-McConnell committed Jun 29, 2018
1 parent 57562ab commit 783f2f9
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions CSharp/Library/Microsoft.Bot.Builder/Dialogs/PromptDialog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -542,16 +542,6 @@ public static void Text(IDialogContext context, ResumeAfter<string> resume, IPro
context.Call<string>(child, resume);
}

/// <summary> Prompt for a string. </summary>
/// <param name="context"> The context. </param>
/// <param name="resume"> Resume handler. </param>
/// <param name="promptOptions"> The options for the prompt, <see cref="IPromptOptions{T}"/>.</param>
public static void Text(IDialogContext context, ResumeAfter<string> resume, IPromptOptions<string> promptOptions)
{
var child = new PromptString(promptOptions);
context.Call<string>(child, resume);
}

/// <summary> Ask a yes/no question. </summary>
/// <param name="context"> The context. </param>
/// <param name="resume"> Resume handler. </param>
Expand Down

0 comments on commit 783f2f9

Please sign in to comment.