This commit is contained in:
Daniil Gentili 2017-11-16 16:06:56 +03:00
parent 9bdc2c9049
commit bf70173a2b
2 changed files with 2 additions and 3 deletions

View File

@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package ui;
package UI;
import Main.Client;
import Main.ClientException;
@ -85,7 +85,6 @@ public class UI {
frame.getContentPane().add(this.warehouseScrollPane, BorderLayout.PAGE_START);
frame.getContentPane().add(this.cartScrollPane, BorderLayout.CENTER);
frame.getContentPane().add(panel, BorderLayout.PAGE_END);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.pack();
frame.setVisible(true);
}

View File

@ -23,7 +23,7 @@ import java.util.logging.Logger;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
import static javax.swing.JOptionPane.ERROR_MESSAGE;
import ui.UI;
import UI.UI;
/**
*
* @author Daniil Gentili