Add an ArrayList of persons to the Person class.
[Persons_Comparator.git] / src / WeightView.java
index 239c437556dededfbbaf3839a0dba0b5c528d89b..1576b62e2e836d77e3433b3c49e32e092ab79bc2 100644 (file)
@@ -4,16 +4,13 @@ public class WeightView extends JComponent {
     private Weight weightObj;
     private JLabel label;
 
-    WeightView() {
+    WeightView(Weight weightObj) {
+        setWeightObj(weightObj);
         this.label = new JLabel();
         this.label.setText("Weight");
         add(label);
     }
 
-    WeightView(Weight weightObj) {
-        setWeightObj(weightObj);
-    }
-
     public Weight getWeightObj() {
         return weightObj;
     }