Skip to content

Commit ba6ac1d

Browse files
authored
Revert some internal changes (#1705)
1 parent f56b918 commit ba6ac1d

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/Microsoft.ComponentDetection.Common/Column.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#nullable disable
22
namespace Microsoft.ComponentDetection.Common;
33

4-
internal class Column
4+
public class Column
55
{
66
public int Width { get; set; }
77

src/Microsoft.ComponentDetection.Common/TabularStringFormat.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ namespace Microsoft.ComponentDetection.Common;
66
using System.Linq;
77
using System.Text;
88

9-
internal class TabularStringFormat
9+
public class TabularStringFormat
1010
{
1111
public const char DefaultVerticalLineChar = '|';
1212
public const char DefaultHorizontalLineChar = '_';

src/Microsoft.ComponentDetection.Detectors/pip/Contracts/PythonVersion.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace Microsoft.ComponentDetection.Detectors.Pip;
88
using System.Linq;
99
using System.Text.RegularExpressions;
1010

11-
internal class PythonVersion : IComparable<PythonVersion>
11+
public class PythonVersion : IComparable<PythonVersion>
1212
{
1313
// This is a light C# port of the python version capture regex described here:
1414
// https://www.python.org/dev/peps/pep-0440/#appendix-b-parsing-version-strings-with-regular-expressions

src/Microsoft.ComponentDetection.Orchestrator/Extensions/SemicolonDelimitedConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace Microsoft.ComponentDetection.Orchestrator.Extensions;
88
/// <summary>
99
/// Converts a semicolon separated string to an array of strings.
1010
/// </summary>
11-
internal class SemicolonDelimitedConverter : TypeConverter
11+
public class SemicolonDelimitedConverter : TypeConverter
1212
{
1313
/// <inheritdoc />
1414
public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value)

0 commit comments

Comments
 (0)