Skip to content

Commit

Permalink
got rid of stack trace
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel DiSanto committed May 17, 2013
1 parent 2c2aa97 commit ffd2d16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/gui/LoginView.java
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ public void actionPerformed(ActionEvent arg0) {
JOptionPane.showMessageDialog(getContentPane(), "Invalid IP Address");
ipAddress.setText("IP Address");
} catch (Exception e5) {
JOptionPane.showMessageDialog(getContentPane(), e5.getStackTrace());
JOptionPane.showMessageDialog(getContentPane(), e5);
ipAddress.setText("IP Address");
portNumber.setText("Port");
username.setText("Username");
Expand Down

0 comments on commit ffd2d16

Please sign in to comment.