We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77ca0b6 commit 5625a46Copy full SHA for 5625a46
src/Nest/QueryDsl/Span/SpanQuery.cs
@@ -42,7 +42,7 @@ public class SpanQuery : ISpanQuery
42
bool IQuery.IsWritable { get; }
43
public bool IsVerbatim { get; set; }
44
public bool IsStrict { get; set; }
45
- public bool IsWritable { get { return this.IsVerbatim || IsConditionless(this); } }
+ public bool IsWritable => this.IsVerbatim || !IsConditionless(this);
46
bool IQuery.Conditionless => IsConditionless(this);
47
public ISpanTermQuery SpanTerm { get; set; }
48
public ISpanFirstQuery SpanFirst { get; set; }
0 commit comments