Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix codefactors style issues
  • Loading branch information
Rene Hernandez committed Mar 29, 2019
commit e217c18151f419e5788ad44b5035fb386a3f34c4
Original file line number Diff line number Diff line change
Expand Up @@ -675,25 +675,29 @@ internal PSNoteProperty GetNotePropertyForProviderCmdlets(string name)
internal static class ProviderInfoPathSeparators
{
public static readonly ReadOnlyCollection<string> FileSystem = new ReadOnlyCollection<string>(
new List<string> {
new List<string>
{
StringLiterals.DefaultPathSeparatorString,
StringLiterals.AlternatePathSeparatorString
});

public static readonly ReadOnlyCollection<string> Variable = new ReadOnlyCollection<string>(
new List<string> {
new List<string>
{
StringLiterals.DefaultPathSeparatorString,
StringLiterals.AlternatePathSeparatorString
});

public static readonly ReadOnlyCollection<string> Function = new ReadOnlyCollection<string>(
new List<string> {
new List<string>
{
StringLiterals.DefaultPathSeparatorString,
StringLiterals.AlternatePathSeparatorString
});

public static readonly ReadOnlyCollection<string> Registry = new ReadOnlyCollection<string>(
new List<string> {
new List<string>
{
StringLiterals.DefaultPathSeparatorString,
});
}
Expand Down