Skip to content

Commit

Permalink
Bugfix for #37
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanMaron committed Sep 28, 2021
1 parent 74dc18e commit 0fef788
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
//[assembly: Extension]
[assembly: NeutralResourcesLanguage("en-US")]
[assembly: AssemblyConfiguration("Release")]
[assembly: AssemblyFileVersion("7.4.7.37768")]
[assembly: AssemblyInformationalVersion("7.4.7.37768")]
[assembly: AssemblyVersion("7.4.7.37768")]
[assembly: AssemblyFileVersion("0.14")]
[assembly: AssemblyInformationalVersion("0.14")]
[assembly: AssemblyVersion("0.14")]
2 changes: 1 addition & 1 deletion Design/Rule0007DataPerCompanyShouldAlwaysBeSet.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public override void Initialize(AnalysisContext context)
private void CheckforMissionDataPerCompanyOnTables(SymbolAnalysisContext context)
{
ITableTypeSymbol table = (ITableTypeSymbol)context.Symbol;
if (table.TableType != TableTypeKind.Temporary)
if (table.TableType == TableTypeKind.Temporary)
return;

if (!IsSymbolAccessible(table))
Expand Down

0 comments on commit 0fef788

Please sign in to comment.