Skip to content

Commit

Permalink
Remove unused record field
Browse files Browse the repository at this point in the history
  • Loading branch information
jfmengels committed Mar 22, 2024
1 parent 44bc26b commit 54c128e
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/NoUnused/CustomTypeConstructors.elm
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,6 @@ type alias ModuleContext =
, exposedCustomTypesWithConstructors : Set CustomTypeName
, isExposed : Bool
, exposesEverything : Bool
, exposedConstructors : Dict ModuleNameAsString ExposedConstructors
, declaredTypesWithConstructors : Dict CustomTypeName (Dict ConstructorName ConstructorInformation)
, usedFunctionsOrValues : Dict ModuleNameAsString (Set ConstructorName)
, phantomVariables : Dict ModuleName (List ( CustomTypeName, Int ))
Expand Down Expand Up @@ -238,7 +237,6 @@ fromProjectToModule =
{ lookupTable = lookupTable
, exposedCustomTypesWithConstructors = Set.empty
, isExposed = Set.member (String.join "." moduleName) projectContext.exposedModules
, exposedConstructors = projectContext.declaredConstructors
, exposesEverything = False
, declaredTypesWithConstructors = Dict.empty
, usedFunctionsOrValues = Dict.empty
Expand Down

0 comments on commit 54c128e

Please sign in to comment.