squid:S1699 - Constructors should only call non-overridable methods

This commit is contained in:
Mohammed Ezzat
2016-02-19 11:02:49 +02:00
parent dfef28e93e
commit 50310aaeaf
5 changed files with 7 additions and 7 deletions

View File

@ -46,7 +46,7 @@ public class Item {
return type;
}
public void setType(ItemType type) {
public final void setType(ItemType type) {
this.type = type;
}
}