Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
mansellan committed Mar 20, 2019
1 parent 2dee9d7 commit f35cced
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 43 deletions.

This file was deleted.

Expand Up @@ -5,7 +5,7 @@

namespace Rubberduck.Parsing.Symbols
{
public abstract class ModuleDeclaration : ComponentDeclaration
public abstract class ModuleDeclaration : Declaration
{
protected ModuleDeclaration(
QualifiedMemberName qualifiedName,
Expand All @@ -19,12 +19,21 @@ public abstract class ModuleDeclaration : ComponentDeclaration
: base(
qualifiedName,
projectDeclaration,
projectDeclaration,
name,
null,
false,
isWithEvents,
Accessibility.Public,
declarationType,
null,
null,
Selection.Home,
false,
null,
isUserDefined,
annotations,
attributes,
isWithEvents)
attributes)
{
CustomFolder = FolderFromAnnotations();
}
Expand Down

0 comments on commit f35cced

Please sign in to comment.