Skip to content

Commit 976f7ad

Browse files
committed
Remove unnecessary setter method
1 parent fb88d1b commit 976f7ad

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

src/Kernel/Structures/_LineNumberTable.php

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -19,20 +19,11 @@ public function execute(): void
1919
$this->lineNumber = $this->readUnsignedShort();
2020
}
2121

22-
public function setStartPc($startPc)
23-
{
24-
$this->startPc = $startPc;
25-
return $this;
26-
}
27-
public function setLineNumber($lineNumber)
28-
{
29-
$this->lineNumber = $lineNumber;
30-
return $this;
31-
}
3222
public function getStartPc()
3323
{
3424
return $this->startPc;
3525
}
26+
3627
public function getLineNumber()
3728
{
3829
return $this->lineNumber;

0 commit comments

Comments
 (0)