Skip to content
Snippets Groups Projects
Commit 1f265122 authored by uhensler's avatar uhensler
Browse files

OO-4104: Remove unused field weight (rubric)

parent 4c391d05
Branches
Tags
No related merge requests found
......@@ -37,7 +37,6 @@ public class Rubric extends AbstractElement {
private SliderType sliderType;
private ScaleType scaleType;
private Integer weight;
private List<Slider> sliders = new ArrayList<>();
private List<StepLabel> stepLabels = new ArrayList<>();
......@@ -79,17 +78,6 @@ public class Rubric extends AbstractElement {
this.scaleType = scaleType;
}
public Integer getWeight() {
if (weight == null) {
weight = 1;
}
return weight;
}
public void setWeight(Integer scaleWeight) {
this.weight = scaleWeight;
}
public String getName() {
return name;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment