Skip to content

Commit

Permalink
Remove unused line.
Browse files Browse the repository at this point in the history
  • Loading branch information
maejima-fumika committed Dec 18, 2024
1 parent 2d10fd7 commit ebf0dab
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions server/src/compiler/elf32.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,7 @@ export class ELF32 {

public readSectionValue(shdr: Shdr): Buffer {
const value = Buffer.alloc(shdr.shSize);
// console.log('Buffer size', this.buffer.length);

this.buffer.copy(value, 0, shdr.shOffset, shdr.shOffset + shdr.shSize);
// console.log(this.readSectionName(shdr), value)
return value;
}

Expand Down

0 comments on commit ebf0dab

Please sign in to comment.