Skip to content

Commit 133ef52

Browse files
Toxic DreamzToxic Dreamz
Toxic Dreamz
authored and
Toxic Dreamz
committed
Fixed an issue with the order of imports that was causing build failures.
1 parent 31471ac commit 133ef52

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

model-view-presenter/src/main/java/com/iluwatar/model/view/presenter/FileSelectorJFrame.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,13 @@
2323

2424
package com.iluwatar.model.view.presenter;
2525

26+
import static javax.swing.ScrollPaneConstants.HORIZONTAL_SCROLLBAR_AS_NEEDED;
27+
import static javax.swing.ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED;
28+
2629
import java.awt.Color;
2730
import java.awt.event.ActionEvent;
2831
import java.awt.event.ActionListener;
32+
2933
import javax.swing.JButton;
3034
import javax.swing.JFrame;
3135
import javax.swing.JLabel;
@@ -35,10 +39,6 @@
3539
import javax.swing.JTextArea;
3640
import javax.swing.JTextField;
3741

38-
import static javax.swing.ScrollPaneConstants.HORIZONTAL_SCROLLBAR_AS_NEEDED;
39-
import static javax.swing.ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED;
40-
import static javax.swing.WindowConstants.EXIT_ON_CLOSE;
41-
4242
/**
4343
* This class is the GUI implementation of the View component in the Model-View-Presenter pattern.
4444
*/

0 commit comments

Comments
 (0)