Skip to content

Commit

Permalink
clean
Browse files Browse the repository at this point in the history
  • Loading branch information
HendrikMennen committed Jul 11, 2023
1 parent 97fbb3c commit fee5b21
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/OneWare.Vhdl/Folding/FoldingRegexVhdl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace OneWare.Vhdl.Folding;

public class FoldingRegexVhdl
public static class FoldingRegexVhdl
{
private const string FoldingStartPattern = @"(?x)
# From the start of the line make sure we are not going into a comment ...
Expand Down Expand Up @@ -47,7 +47,7 @@ public class FoldingRegexVhdl
)
";

public static Regex FoldingStart = new(FoldingStartPattern, RegexOptions.Multiline);
public static readonly Regex FoldingStart = new(FoldingStartPattern, RegexOptions.Multiline);

public static Regex FoldingEnd = new(FoldingEndPattern, RegexOptions.Multiline);
public static readonly Regex FoldingEnd = new(FoldingEndPattern, RegexOptions.Multiline);
}

0 comments on commit fee5b21

Please sign in to comment.