Skip to content

Commit

Permalink
Do not abort when loading docs, silently return nil
Browse files Browse the repository at this point in the history
  • Loading branch information
migueldeicaza committed Sep 18, 2023
1 parent 95ab045 commit 663e19d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Generator/Generator/DocModel.swift
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ func loadClassDoc (base: String, name: String) -> DocClass? {
return v
} catch (let e){
print ("Failed to load docs for \(name), details: \(e)")
fatalError()
return nil
}
}

Expand Down

0 comments on commit 663e19d

Please sign in to comment.