[AHCTransport] Consistent style for initializing local variables by czechboy0 · Pull Request #10 · swift-server/swift-openapi-async-http-client (original) (raw)

Motivation

Move to a consistent style when initializing local variables, always use let foo = Foo(...) vs let foo: Foo = .init(...).

Modifications

Updated all occurrences of the latter to use the former.

Result

Consistent local variable initialization.

Test Plan

All tests passed.