diff --git a/src/WireMock.Net/RegularExpressions/RegexGuid.cs b/src/WireMock.Net/RegularExpressions/RegexGuid.cs index 3980fe7e3..cbf1c0910 100644 --- a/src/WireMock.Net/RegularExpressions/RegexGuid.cs +++ b/src/WireMock.Net/RegularExpressions/RegexGuid.cs @@ -13,7 +13,6 @@ namespace WireMock.RegularExpressions /// public class RegexGuid : Regex { - /// /// Token for a GUID formated with `B` format specifier with lower case /// values. @@ -126,13 +125,11 @@ public class RegexGuid : Regex /// public const string GuidXRegexPattern = @"(\{0x[A-F0-9]{8},0x[A-F0-9]{4},0x[A-F0-9]{4},\{(0x[A-F0-9]{2},){7}(0x[A-F0-9]{2})\}\})"; - /// public RegexGuid(string pattern) : this(pattern, RegexOptions.None) { } - /// public RegexGuid(string pattern, RegexOptions options) @@ -140,7 +137,6 @@ public RegexGuid(string pattern, { } - /// public RegexGuid(string pattern, RegexOptions options, @@ -149,7 +145,6 @@ public RegexGuid(string pattern, { } - /// /// Replaces all instances of valid GUID tokens with the correct regular /// expression to match. diff --git a/test/WireMock.Net.Tests/RegularExpressions/RegexGuidTests.cs b/test/WireMock.Net.Tests/RegularExpressions/RegexGuidTests.cs index ebc8b43fa..aa54c0a0f 100644 --- a/test/WireMock.Net.Tests/RegularExpressions/RegexGuidTests.cs +++ b/test/WireMock.Net.Tests/RegularExpressions/RegexGuidTests.cs @@ -96,6 +96,5 @@ public void RegexGuid_GuidX_Pattern() Check.That(regexUpper.IsMatch(inputUpper)).Equals(true); Check.That(regexUpper.IsMatch(inputLower)).Equals(false); } - } }