Class responsible for checking for a newer version of JBroFuzz by visiting the OWASP website and comparing version numbers.
490491492493494495496497498499500
updates.addActionListener(new ActionListener() { public void actionPerformed(final ActionEvent e) { SwingUtilities.invokeLater(new Runnable() { public void run() { new CheckForUpdates(JBroFuzzMenuBar.this.getFrame()); } }); } });