Skip to content

Commit 4dbf2f8

Browse files
committed
Remove hidden attribute
1 parent 3123832 commit 4dbf2f8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/PowerShellEditorServices/Session/PowerShellContext.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1207,7 +1207,7 @@ internal static string GlobEscapePath(string path, bool escapeSpaces = false)
12071207
/// <param name="path">The path to process.</param>
12081208
/// <param name="escapeSpaces">Specify True to escape spaces in the path, otherwise False.</param>
12091209
/// <returns>The path with [ and ] escaped.</returns>
1210-
[Hidden, EditorBrowsable(EditorBrowsableState.Never)]
1210+
[EditorBrowsable(EditorBrowsableState.Never)]
12111211
[Obsolete("This API is not meant for public usage and should not be used.")]
12121212
public static string EscapePath(string path, bool escapeSpaces)
12131213
{
@@ -1260,7 +1260,7 @@ internal static string UnescapeGlobEscapedPath(string globEscapedPath)
12601260
/// </summary>
12611261
/// <param name="path">The path to unescape.</param>
12621262
/// <returns>The path with the ` character before [, ] and spaces removed.</returns>
1263-
[Hidden, EditorBrowsable(EditorBrowsableState.Never)]
1263+
[EditorBrowsable(EditorBrowsableState.Never)]
12641264
[Obsolete("This API is not meant for public usage and should not be used.")]
12651265
public static string UnescapePath(string path)
12661266
{

0 commit comments

Comments
 (0)