diff --git a/src/Strata.SqlTools.Rules/Rule/Groups/With.cs b/src/Strata.SqlTools.Rules/Rule/Groups/With.cs
index 56fa42c..a7899b3 100644
--- a/src/Strata.SqlTools.Rules/Rule/Groups/With.cs
+++ b/src/Strata.SqlTools.Rules/Rule/Groups/With.cs
@@ -7,15 +7,8 @@ namespace Strata.SqlTools.Rules.Rule.Groups;
///
public class With : Base
{
- ///
- /// Gets the expressions from all rules, potentially with ordering applied.
- ///
- /// An enumerable of BoolExpr rule expressions.
- protected override IEnumerable GetExpressions()
- {
- // do some ordering here??
- return base.GetExpressions();
- }
+ // TODO: revisit whether ordering should be applied here before delegating
+ // to the base GetExpressions(); inherit base behavior for now.
///
/// Merges two BoolExpr expressions using WITH semantics.