Skip to content

Commit 2a9399d

Browse files
committed
help older compilers by using the more traditional property syntax
1 parent 84452aa commit 2a9399d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/net-placeholders/IsDateTimePlaceholderHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public class IsDateTimePlaceholderHandler : IPlaceholderHandler
2929
private const string _keyword = "isDateTime";
3030

3131
/// <inheritdoc/>
32-
public string Keyword => _keyword;
32+
public string Keyword { get { return _keyword; } }
3333

3434
/// <inheritdoc/>
3535
public ComparisonResult Evaluate(string testText)

0 commit comments

Comments
 (0)