change headerVisibility default back to public

This commit is contained in:
Yonas Kolb
2018-03-02 20:34:47 +11:00
parent 59a2f4116d
commit 0c2b7dc718
2 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -62,7 +62,7 @@ class SourceGenerator {
}
if chosenBuildPhase == .headers {
let headerVisibility = targetSource.headerVisibility ?? .project
let headerVisibility = targetSource.headerVisibility ?? .public
if headerVisibility != .project {
// Xcode doesn't write the default of project
settings["ATTRIBUTES"] = [headerVisibility.settingName]