Skip to content

Commit

Permalink
Remove empty lines
Browse files Browse the repository at this point in the history
  • Loading branch information
Manu098vm committed Jun 9, 2024
1 parent 1bab1a7 commit 38abb0f
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions HomeLive.DeviceExecutor/DeviceExecutor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -97,10 +97,7 @@ public async Task<ulong> GetBoxStartOffset(CancellationToken token)
if (!Connection.Connected)
throw new InvalidOperationException("No remote connection");


var offset = await SwitchConnection.PointerAll(HomeDataOffsets.BoxStartPointer, token).ConfigureAwait(false);

return offset;
return await SwitchConnection.PointerAll(HomeDataOffsets.BoxStartPointer, token).ConfigureAwait(false);
}

public async Task<byte[]> ReadBoxData(int box, CancellationToken token)
Expand Down

0 comments on commit 38abb0f

Please sign in to comment.