Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[dotnet] Make some classes in internal folder as really to be internal #13331

Open
wants to merge 1 commit into
base: trunk
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion dotnet/src/webdriver/Internal/Base64UrlEncoder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ namespace OpenQA.Selenium.Internal
/// <summary>
/// Encodes and Decodes strings as Base64Url encoding.
/// </summary>
public static class Base64UrlEncoder
internal static class Base64UrlEncoder
{
private const char base64PadCharacter = '=';
private const string doubleBase64PadCharacter = "==";
Expand Down
3 changes: 0 additions & 3 deletions dotnet/src/webdriver/Internal/IWebDriverObjectReference.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,7 @@
// limitations under the License.
// </copyright>

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace OpenQA.Selenium.Internal
{
Expand Down
2 changes: 1 addition & 1 deletion dotnet/src/webdriver/Internal/PortUtilities.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ namespace OpenQA.Selenium.Internal
/// <summary>
/// Encapsulates methods for working with ports.
/// </summary>
public static class PortUtilities
internal static class PortUtilities
{
/// <summary>
/// Finds a random, free port to be listened on.
Expand Down
3 changes: 0 additions & 3 deletions dotnet/src/webdriver/Internal/ResourceUtilities.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@
// limitations under the License.
// </copyright>

using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
using System.IO;
using System.Reflection;
Expand Down
2 changes: 1 addition & 1 deletion dotnet/src/webdriver/Internal/ReturnedCookie.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ namespace OpenQA.Selenium.Internal
/// <summary>
/// Represents a cookie returned to the driver by the browser.
/// </summary>
public class ReturnedCookie : Cookie
internal class ReturnedCookie : Cookie
{

/// <summary>
Expand Down