Skip to content
This repository was archived by the owner on Oct 16, 2020. It is now read-only.

Commit 3c64d4f

Browse files
committed
Fix build.
1 parent 5e93aa5 commit 3c64d4f

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

src/Libraries/NRefactory/Project/Src/PrettyPrinter/CSharp/CSharpOutputVisitor.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3252,9 +3252,11 @@ public override object TrackedVisitQueryExpressionSelectVBClause(QueryExpression
32523252
return null;
32533253
}
32543254

3255-
public override object TrackedVisitQueryExpressionWhereClause(QueryExpressionWhereClause whereClause, object data)
3255+
public override object TrackedVisitQueryExpressionWhereClause(QueryExpressionWhereClause whereClause, object data)
32563256
{
3257-
outputFormatter.Space();
3257+
if (!outputFormatter.LastCharacterIsWhiteSpace) {
3258+
outputFormatter.Space();
3259+
}
32583260
outputFormatter.PrintToken(Tokens.Where);
32593261
outputFormatter.Space();
32603262
return whereClause.Condition.AcceptVisitor(this, data);

0 commit comments

Comments
 (0)