Skip to content

Commit 0d70fda

Browse files
committed
Fix-up something
1 parent 003d39a commit 0d70fda

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/NHibernate/Linq/Visitors/QueryModelVisitor.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ public override void VisitNhHavingClause(NhHavingClause havingClause, QueryModel
309309
_hqlTree.AddHavingClause(expression);
310310
}
311311

312-
public virtual void VisitNhWithClause(NhWithClause withClause, QueryModel queryModel, int index)
312+
public override void VisitNhWithClause(NhWithClause withClause, QueryModel queryModel, int index)
313313
{
314314
var visitor = new SimplifyConditionalVisitor();
315315
withClause.Predicate = visitor.Visit(withClause.Predicate);
@@ -326,4 +326,4 @@ public override void VisitNhJoinClause(NhJoinClause joinClause, QueryModel query
326326
VisitNhJoinClause(querySourceName, joinClause);
327327
}
328328
}
329-
}
329+
}

0 commit comments

Comments
 (0)