Skip to content

Commit

Permalink
Making Until<T> method of .NET DefaultWait<T> class virtual
Browse files Browse the repository at this point in the history
  • Loading branch information
jimevans committed Apr 11, 2019
1 parent 03b761f commit 00ef218
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dotnet/src/webdriver/Support/DefaultWait{T}.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// <copyright file="DefaultWait{T}.cs" company="WebDriver Committers">
// <copyright file="DefaultWait{T}.cs" company="WebDriver Committers">
// Licensed to the Software Freedom Conservancy (SFC) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
Expand Down Expand Up @@ -139,7 +139,7 @@ public void IgnoreExceptionTypes(params Type[] exceptionTypes)
/// <typeparam name="TResult">The delegate's expected return type.</typeparam>
/// <param name="condition">A delegate taking an object of type T as its parameter, and returning a TResult.</param>
/// <returns>The delegate's return value.</returns>
public TResult Until<TResult>(Func<T, TResult> condition)
public virtual TResult Until<TResult>(Func<T, TResult> condition)
{
if (condition == null)
{
Expand Down

0 comments on commit 00ef218

Please sign in to comment.