mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-15 22:41:30 +00:00
chore: change in the argument name for setters
This commit is contained in:
parent
f0fe95be85
commit
ce18e35be7
@ -18,20 +18,22 @@ public class Item {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
// No setter for Name because it is not necessary yet
|
||||
|
||||
public int getSellIn() {
|
||||
return this.sellIn;
|
||||
}
|
||||
|
||||
public void setSellIn(int value) {
|
||||
this.sellIn = value;
|
||||
public void setSellIn(int sellIn) {
|
||||
this.sellIn = sellIn;
|
||||
}
|
||||
|
||||
public int getQuality() {
|
||||
return this.quality;
|
||||
}
|
||||
|
||||
public void setQuality(int value) {
|
||||
this.quality = value;
|
||||
public void setQuality(int quality) {
|
||||
this.quality = quality;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Loading…
Reference in New Issue
Block a user