Skip to content

Commit 50613df

Browse files
committed
remove ignoreExportedInterfaces variable
1 parent 87aaf4e commit 50613df

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

Sources/SymbolGraphCompiler/SSGC.TypeChecker.swift

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ extension SSGC
1010
public
1111
struct TypeChecker
1212
{
13-
private
14-
let ignoreExportedInterfaces:Bool
1513
private
1614
var declarations:Declarations
1715
private
@@ -23,9 +21,8 @@ extension SSGC
2321
var resolvableModules:[Symbol.Module]
2422

2523
public
26-
init(ignoreExportedInterfaces:Bool = true, threshold:Symbol.ACL = .public)
24+
init(threshold:Symbol.ACL = .public)
2725
{
28-
self.ignoreExportedInterfaces = ignoreExportedInterfaces
2926
self.declarations = .init(threshold: threshold)
3027
self.extensions = .init()
3128

0 commit comments

Comments
 (0)