Skip to content

Commit e7628d9

Browse files
committed
remove stray whitespace
1 parent 6e4d1b6 commit e7628d9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/GitVersion.Core/VersionCalculation/SemanticVersioning/SemanticVersion.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ namespace GitVersion
66
public class SemanticVersion : IFormattable, IComparable<SemanticVersion>
77
{
88
private static SemanticVersion Empty = new SemanticVersion();
9+
910
private static readonly Regex ParseSemVer = new Regex(
1011
@"^(?<SemVer>(?<Major>\d+)?(\.(?<Minor>\d+))?(\.(?<Patch>\d+))?)(\.(?<FourthPart>\d+))?(-(?<Tag>[^\+]*))?(\+(?<BuildMetaData>.*))?$",
1112
RegexOptions.Compiled);
@@ -197,8 +198,6 @@ public static bool TryParse(string version, string tagPrefixRegex, out SemanticV
197198
return true;
198199
}
199200

200-
201-
202201
public int CompareTo(SemanticVersion value)
203202
{
204203
return CompareTo(value, true);

0 commit comments

Comments
 (0)