From f9a0c943e54ee01b5b476e9ed85beef5f0ee62b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kutay=20Karaka=C5=9F?= Date: Thu, 25 Jan 2024 17:21:00 -0500 Subject: [PATCH] i_395: Removing this. --- src/edu/csus/ecs/pc2/ui/ScoringPropertiesPane.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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(); }