Skip to content

Commit af4e704

Browse files
committed
single-src: remove _production field
1 parent c14966c commit af4e704

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/single-source/index.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
export class ProductionPlan {
22
constructor() {
33
this._adjustments = [];
4-
this._production = 0;
54
}
65

76
get production() {
@@ -10,6 +9,5 @@ export class ProductionPlan {
109

1110
applyAdjustment(anAdjustment) {
1211
this._adjustments.push(anAdjustment);
13-
this._production += anAdjustment.amount;
1412
}
1513
}

0 commit comments

Comments
 (0)