diff --git a/src/edu/csus/ecs/pc2/ui/ScoringPropertiesPane.java b/src/edu/csus/ecs/pc2/ui/ScoringPropertiesPane.java index 94f78a816..10192c7b3 100644 --- a/src/edu/csus/ecs/pc2/ui/ScoringPropertiesPane.java +++ b/src/edu/csus/ecs/pc2/ui/ScoringPropertiesPane.java @@ -49,7 +49,7 @@ private void initialize() { this.setLayout(new BorderLayout()); this.setPreferredSize(new Dimension(350, 200)); this.add(getPropertyListBox(), BorderLayout.CENTER); - this.lengthOfColumns = 167; + lengthOfColumns = 167; } @@ -73,8 +73,8 @@ private MCLB getPropertyListBox() { HeapSorter sorter = new HeapSorter(); propertyListBox.setColumnSorter(1, sorter, 1); - propertyListBox.setColumnSize(0,this.lengthOfColumns); - propertyListBox.setColumnSize(1,this.lengthOfColumns); + propertyListBox.setColumnSize(0,lengthOfColumns); + propertyListBox.setColumnSize(1,lengthOfColumns); propertyListBox.setResizable(false); propertyListBox.addKeyListener(new java.awt.event.KeyAdapter() { @@ -121,8 +121,8 @@ protected void refreshProperties() { propertyListBox.addRow(objects); } - propertyListBox.setColumnSize(0,this.lengthOfColumns); - propertyListBox.setColumnSize(1,this.lengthOfColumns); + propertyListBox.setColumnSize(0,lengthOfColumns); + propertyListBox.setColumnSize(1,lengthOfColumns); enableButtons(); }