Skip to content

Commit

Permalink
Make the input fields lazy
Browse files Browse the repository at this point in the history
  • Loading branch information
MancunianSam committed Nov 15, 2024
1 parent cfddda2 commit 95c3571
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ object CsvValidatorUi extends SimpleSwingApplication {
super.startup(args)
}

private val txtCsvFile = new JTextField(30)
private val txtCsvSchemaFile = new JTextField(30)
private lazy val txtCsvFile = new JTextField(30)
private lazy val txtCsvSchemaFile = new JTextField(30)

def top: SJXFrame = new SJXFrame {

Expand Down

0 comments on commit 95c3571

Please sign in to comment.