[RFC][IcedTea-Web]: Moved creation of swing thread.
Andrew Su
asu at redhat.com
Thu Dec 23 13:04:17 PST 2010
--Snip--
> > diff -r 70e445bbe85a
> > netx/net/sourceforge/jnlp/controlpanel/AdvancedProxySettingsDialog.java
> > ---
> > a/netx/net/sourceforge/jnlp/controlpanel/AdvancedProxySettingsDialog.java
> > Wed Dec 22 17:14:44 2010 -0500
> > +++
> > b/netx/net/sourceforge/jnlp/controlpanel/AdvancedProxySettingsDialog.java
> > Thu Dec 23 14:56:42 2010 -0500
> > @@ -120,16 +120,11 @@
> > */
> > public static void showAdvancedProxySettingsDialog(final
> > DeploymentConfiguration config) throws Exception {
>
> Is there a reason this method throws an exception?
This was left in from other changes before, will be removed with this patch.
>
> > setSystemLookAndFeel();
>
> Can you please remove this? I dont think this is doing anything.
As said in previous e-mail, this will be in the patch to follow.
>
> > - SwingUtilities.invokeLater(new Runnable() {
> > - @Override
> > - public void run() {
> > - AdvancedProxySettingsDialog psd = new
> > AdvancedProxySettingsDialog(config);
> > - psd.setResizable(false);
> > - psd.centerDialog();
> > - psd.setVisible(true);
> > - psd.dispose();
> > - }
> > - });
> > + AdvancedProxySettingsDialog psd = new
> > AdvancedProxySettingsDialog(config);
> > + psd.setResizable(false);
> > + psd.centerDialog();
> > + psd.setVisible(true);
> > + psd.dispose();
> >
> > }
> >
>
> This part looks fine to me.
ok
>
> > diff -r 70e445bbe85a
> > netx/net/sourceforge/jnlp/controlpanel/TemporaryInternetFilesPanel.java
> > ---
> > a/netx/net/sourceforge/jnlp/controlpanel/TemporaryInternetFilesPanel.java
> > Wed Dec 22 17:14:44 2010 -0500
> > +++
> > b/netx/net/sourceforge/jnlp/controlpanel/TemporaryInternetFilesPanel.java
> > Thu Dec 23 14:56:42 2010 -0500
> > @@ -184,23 +184,15 @@
> > JPanel buttonDeleteRestore = new JPanel(new
> > FlowLayout(FlowLayout.TRAILING));
> > JButton bViewFiles = new
> > JButton(Translator.R("TIFPViewFiles"));
> > bViewFiles.addActionListener(new ActionListener() {
> > -
> > @Override
> > public void actionPerformed(ActionEvent e) {
> > - SwingUtilities.invokeLater(new Runnable() {
> > - @Override
> > - public void run() {
> > - try {
> > - CacheViewer.showCacheDialog(config);
> > - } catch (Exception e1) {
> > - // TODO Auto-generated catch block
> > - e1.printStackTrace();
> > - }
> > -
> > - }
> > - });
> > + try {
> > + CacheViewer.showCacheDialog(config);
> > + } catch (Exception e1) {
> > + // TODO Auto-generated catch block
> > + e1.printStackTrace();
> > + }
> > }
>
> If you can change showCacheDialog to avoid throwing exceptions, you
> wont
> need the catch block here. Other than that, this looks good.
Changed.
Can you look it over again once more, for some of the changes. Thanks.
Ok for head?
Cheers,
Andrew
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 20101223_remove_need_for_creating_swing_thread_v2.patch
Type: text/x-patch
Size: 4968 bytes
Desc: not available
Url : http://mail.openjdk.java.net/pipermail/distro-pkg-dev/attachments/20101223/b0a2d0a9/20101223_remove_need_for_creating_swing_thread_v2.patch
More information about the distro-pkg-dev
mailing list