removed default login data for testing purposes
This commit is contained in:
parent
23d96f41b2
commit
34ecda7d6e
|
@ -33,7 +33,6 @@ public class Loader {
|
|||
fileChooser.setFileFilter(FILE_FILTER);
|
||||
fileChooser.setDialogType(JFileChooser.OPEN_DIALOG);
|
||||
fileChooser.setAcceptAllFileFilterUsed(false);
|
||||
fileChooser.setCurrentDirectory(new File("/home/teridax/IdeaProjects/JCash/res"));
|
||||
|
||||
if (fileChooser.showDialog(null, "Load database") == APPROVE_OPTION) {
|
||||
// parse file content
|
||||
|
|
|
@ -43,10 +43,9 @@ public class LoginView extends JPanel {
|
|||
}
|
||||
|
||||
private void createComponents() {
|
||||
this.blz = new JFormattedTextField("MA2424");
|
||||
this.blz = new JFormattedTextField();
|
||||
this.iban = new JFormattedTextField(getNumberFormat());
|
||||
this.iban.setText("4711");
|
||||
this.pin = new JPasswordField("1234");
|
||||
this.pin = new JPasswordField();
|
||||
this.login = new JButton("Login");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue