Skip to content

Commit eaaed64

Browse files
committed
fix: Unused return value warning
1 parent 240e0ee commit eaaed64

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Sources/ProtocolGen/Generate.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ extension ProtocolGen {
336336
)
337337
).description
338338
let sourceData = sourceText.data(using: .utf8)
339-
fileManager.createFile(atPath: output, contents: sourceData)
339+
_ = fileManager.createFile(atPath: output, contents: sourceData)
340340
}
341341
}
342342
}

0 commit comments

Comments
 (0)