(ActionEvent actionEvent)
| 930 | JMenuItem recentSketchMenuItem = new JMenuItem(recentSketch.getParentFile().getName()); |
| 931 | recentSketchMenuItem.addActionListener(new ActionListener() { |
| 932 | @Override |
| 933 | public void actionPerformed(ActionEvent actionEvent) { |
| 934 | try { |
| 935 | handleOpen(recentSketch); |
| 936 | } catch (Exception e) { |
| 937 | e.printStackTrace(); |
| 938 | } |
| 939 | } |
| 940 | }); |
| 941 | recentSketchesMenuItems.add(recentSketchMenuItem); |
| 942 | } |
nothing calls this directly
no test coverage detected