Skip to content

Commit

Permalink
Put unwraps in the right place.
Browse files Browse the repository at this point in the history
  • Loading branch information
InsertCreativityHere authored Sep 4, 2024
1 parent fee1159 commit ffaf725
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions swift/test/Ice/ami/TestI.swift
Original file line number Diff line number Diff line change
Expand Up @@ -137,11 +137,11 @@ class TestI: TestIntf {
}

func close(current: Current) async throws {
async let _ = current!.con.close()
async let _ = current.con!.close()
}

func abort(current: Current) async throws {
current!.con.abort()
current.con!.abort()
}

func sleep(ms: Int32, current _: Current) async throws {
Expand Down

0 comments on commit ffaf725

Please sign in to comment.