Skip to content

Commit d280dfa

Browse files
committed
Remove whitespace
1 parent 88cde59 commit d280dfa

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

Sources/AndroidLooper/SerialExecutor.swift

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,18 +26,15 @@ public extension Looper {
2626

2727
/// Initialize with Android Looper
2828
internal init(looper: consuming Looper) throws(AndroidLooperError) {
29-
let looperHandle = looper.handle
3029
// open fd
3130
let fd = eventfd(0, EFD_CLOEXEC | EFD_NONBLOCK) // TODO: Move to System / Socket package
3231
if fd < 0 {
3332
throw .bionic(Errno(rawValue: errno))
3433
}
35-
3634
// initialize
3735
let eventFd = FileDescriptor(rawValue: fd)
3836
self.eventFd = eventFd
3937
self.looper = looper
40-
4138
// Add fd to Looper
4239
try configureLooper()
4340
}

0 commit comments

Comments
 (0)