Fixed an issue with the order of imports that was causing build failures.

This commit is contained in:
Toxic Dreamz 2020-08-15 22:19:27 +04:00
parent 31471acb69
commit 133ef52898

View File

@ -23,9 +23,13 @@
package com.iluwatar.model.view.presenter;
import static javax.swing.ScrollPaneConstants.HORIZONTAL_SCROLLBAR_AS_NEEDED;
import static javax.swing.ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED;
import java.awt.Color;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
@ -35,10 +39,6 @@ import javax.swing.JScrollPane;
import javax.swing.JTextArea;
import javax.swing.JTextField;
import static javax.swing.ScrollPaneConstants.HORIZONTAL_SCROLLBAR_AS_NEEDED;
import static javax.swing.ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED;
import static javax.swing.WindowConstants.EXIT_ON_CLOSE;
/**
* This class is the GUI implementation of the View component in the Model-View-Presenter pattern.
*/