Skip to content

Commit

Permalink
chore: remove dead code
Browse files Browse the repository at this point in the history
  • Loading branch information
JoanVicens committed Mar 20, 2024
1 parent 38d7c8d commit 3880c69
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/apps/fuse/callbacks/ReadCallback.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,13 @@ export class ReadCallback {
length: number,
position: number
): Promise<number> {
// Logger.debug('READING ', length, 'MB FROM ', filePath);

const readResult = await this.offlineDrive.contentsChunkReader.run(
filePath,
length,
position
);

if (!readResult.isPresent()) {
Logger.debug('READ DONE');
return 0;
}

Expand Down

0 comments on commit 3880c69

Please sign in to comment.