Skip to content

Commit 783f2f9

Browse files
author
Tom Laird-McConnell
committed
remove bad merge duplicate method
1 parent 57562ab commit 783f2f9

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

CSharp/Library/Microsoft.Bot.Builder/Dialogs/PromptDialog.cs

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -542,16 +542,6 @@ public static void Text(IDialogContext context, ResumeAfter<string> resume, IPro
542542
context.Call<string>(child, resume);
543543
}
544544

545-
/// <summary> Prompt for a string. </summary>
546-
/// <param name="context"> The context. </param>
547-
/// <param name="resume"> Resume handler. </param>
548-
/// <param name="promptOptions"> The options for the prompt, <see cref="IPromptOptions{T}"/>.</param>
549-
public static void Text(IDialogContext context, ResumeAfter<string> resume, IPromptOptions<string> promptOptions)
550-
{
551-
var child = new PromptString(promptOptions);
552-
context.Call<string>(child, resume);
553-
}
554-
555545
/// <summary> Ask a yes/no question. </summary>
556546
/// <param name="context"> The context. </param>
557547
/// <param name="resume"> Resume handler. </param>

0 commit comments

Comments
 (0)