From 321822fdff44ce7182968d481af210c7a5a3a730 Mon Sep 17 00:00:00 2001 From: Andrew Hershberger Date: Thu, 1 Feb 2024 13:01:52 -0500 Subject: [PATCH] Delete stale comment (#3) --- Sources/SwiftGumbo/SwiftGumbo.swift | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Sources/SwiftGumbo/SwiftGumbo.swift b/Sources/SwiftGumbo/SwiftGumbo.swift index 314e008..8124733 100644 --- a/Sources/SwiftGumbo/SwiftGumbo.swift +++ b/Sources/SwiftGumbo/SwiftGumbo.swift @@ -19,12 +19,8 @@ public class SwiftGumbo { let outputResult = withUnsafePointer(to: options) { (optionsPointer) -> UnsafeMutablePointer in gumbo_parse_with_options(optionsPointer, htmlBuffer, htmlBuffer.count) } - self.htmlBuffer = htmlBuffer - - // Safe to force try here since the outputResult only returns success. self.gumboOutput = outputResult - self.status = outputResult.pointee.status }