-
Notifications
You must be signed in to change notification settings - Fork 16
Commit 762f5e5
[AHCTransport] Consistent style for initializing local variables (#10)
[AHCTransport] Consistent style for initializing local variables
### 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.
Reviewed by: gjcairo, simonjbeaumont
Builds:
✔︎ pull request validation (5.8) - Build finished.
✔︎ pull request validation (5.9) - Build finished.
✔︎ pull request validation (nightly) - Build finished.
✔︎ pull request validation (soundness) - Build finished.
#10 1 parent 875fecf commit 762f5e5
File tree
1 file changed
+2
-2
lines changed- Tests/OpenAPIAsyncHTTPClientTests
1 file changed
+2
-2
lines changedLines changed: 2 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
63 | 63 |
| |
64 | 64 |
| |
65 | 65 |
| |
66 | - | ||
66 | + | ||
67 | 67 |
| |
68 | 68 |
| |
69 | 69 |
| |
| |||
83 | 83 |
| |
84 | 84 |
| |
85 | 85 |
| |
86 | - | ||
86 | + | ||
87 | 87 |
| |
88 | 88 |
| |
89 | 89 |
| |
|
0 commit comments