Skip to content

Commit

Permalink
Remove extra line
Browse files Browse the repository at this point in the history
  • Loading branch information
zijchen authored Sep 13, 2024
1 parent 1319f78 commit 84fd50a
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ public override IList<SqlRuleProblem> Analyze(SqlRuleExecutionContext ruleExecut
string problemDescription = string.Format("Table name {0} ends in View. This can cause confusion and should be avoided",
GetQualifiedTableName(table.Name));
SqlRuleProblem problem = new SqlRuleProblem(problemDescription, table);
//SqlRuleProblem problem = new SqlRuleProblem(this, problemDescription, table);
problems.Add(problem);
}
}
Expand All @@ -71,4 +70,4 @@ private string GetQualifiedTableName(ObjectIdentifier id)
return buf.ToString();
}
}
}
}

0 comments on commit 84fd50a

Please sign in to comment.