Skip to content

Commit

Permalink
Fix namespace references
Browse files Browse the repository at this point in the history
Signed-off-by: Author Name <[email protected]>
  • Loading branch information
Corniel committed Jan 24, 2025
1 parent 84399df commit ee12da9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions runtime/CSharp/src/Recognizer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
using System.Runtime.CompilerServices;
using Antlr4.Runtime.Atn;
using Antlr4.Runtime.Misc;
using Antlr4.Runtime.Sharpen;

namespace Antlr4.Runtime
{
Expand Down
2 changes: 1 addition & 1 deletion runtime/CSharp/src/Vocabulary.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ namespace Antlr4.Runtime
/// <author>Sam Harwell</author>
public class Vocabulary : IVocabulary
{
private static readonly string[] EmptyNames = System.Collections.EmptyList<string>();
private static readonly string[] EmptyNames = Collections.EmptyList<string>();

/// <summary>
/// Gets an empty
Expand Down

0 comments on commit ee12da9

Please sign in to comment.