Skip to content

Commit

Permalink
Remove historical components marked as obsolete
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmcroft committed Feb 17, 2023
1 parent 1cca7cd commit 22995ef
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 98 deletions.
62 changes: 0 additions & 62 deletions src/Legerity.Core/Android/AndroidAppManagerOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -80,68 +80,6 @@ public AndroidAppManagerOptions(
{
}

/// <summary>
/// Initializes a new instance of the <see cref="AndroidAppManagerOptions"/> class.
/// </summary>
/// <param name="appId">
/// The ID of the application under test, e.g. com.instagram.android.
/// </param>
/// <param name="appActivity">
/// The activity of the application to start, e.g. com.instagram.android.activity.MainTabActivity.
/// </param>
/// <param name="osVersion">
/// The version of Android to run the application on.
/// </param>
/// <param name="deviceName">
/// The name of the Android device to run the application on.
/// </param>
/// <param name="deviceId">
/// The ID of the Android device to run the application on.
/// </param>
[Obsolete("This constructor will be removed in a future major release. Please use the (string appId, string appActivity) instead and provide optional parameters for configuring for the device needed.")]
public AndroidAppManagerOptions(
string appId,
string appActivity,
string osVersion,
string deviceName,
string deviceId)
: this(appId, appActivity, null, osVersion, deviceName, deviceId, null)
{
}

/// <summary>
/// Initializes a new instance of the <see cref="AndroidAppManagerOptions"/> class.
/// </summary>
/// <param name="appId">
/// The ID of the application under test, e.g. com.instagram.android.
/// </param>
/// <param name="appActivity">
/// The activity of the application to start, e.g. com.instagram.android.activity.MainTabActivity.
/// </param>
/// <param name="osVersion">
/// The version of Android to run the application on.
/// </param>
/// <param name="deviceName">
/// The name of the Android device to run the application on.
/// </param>
/// <param name="deviceId">
/// The ID of the Android device to run the application on.
/// </param>
/// <param name="additionalOptions">
/// The additional options to apply to the <see cref="AppiumOptions"/>.
/// </param>
[Obsolete("This constructor will be removed in a future major release. Please use the (string appId, string appActivity, params (string, object)[] additionalOptions) instead and provide optional parameters for configuring for the device needed.")]
public AndroidAppManagerOptions(
string appId,
string appActivity,
string osVersion,
string deviceName,
string deviceId,
params (string, object)[] additionalOptions)
: this(appId, appActivity, null, osVersion, deviceName, deviceId, additionalOptions)
{
}

/// <summary>
/// Initializes a new instance of the <see cref="AndroidAppManagerOptions"/> class.
/// </summary>
Expand Down
36 changes: 0 additions & 36 deletions src/Legerity.Windows/Extensions/ByExtensions.cs

This file was deleted.

0 comments on commit 22995ef

Please sign in to comment.