File tree 1 file changed +5
-7
lines changed
src/main/java/org/pignat/app/qr2gerber
1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -114,12 +114,10 @@ public void actionPerformed(ActionEvent e) {
114
114
PrintWriter out = new PrintWriter (destField .getText ());
115
115
out .println (q2g .toGerber ());
116
116
out .close ();
117
- } catch (FileNotFoundException e1 ) {
118
- // TODO Auto-generated catch block
119
- e1 .printStackTrace ();
120
- } catch (WriterException e1 ) {
121
- // TODO Auto-generated catch block
122
- e1 .printStackTrace ();
117
+ } catch (FileNotFoundException ex ) {
118
+ ex .printStackTrace ();
119
+ } catch (WriterException ex ) {
120
+ ex .printStackTrace ();
123
121
}
124
122
}
125
123
if (e .getSource () == browseButton )
@@ -134,7 +132,7 @@ public void actionPerformed(ActionEvent e) {
134
132
}
135
133
}
136
134
137
- public static void main (String args [] ) {
135
+ public static void main (String [] args ) {
138
136
SwingUtilities .invokeLater (new Runnable () {
139
137
public void run () {
140
138
App ex = new App ();
You can’t perform that action at this time.
0 commit comments