From a3b83252d1a22b2669056e8b7c86f113b0e3e479 Mon Sep 17 00:00:00 2001 From: yukihane Date: Wed, 31 Aug 2011 23:03:09 +0900 Subject: [PATCH] =?utf8?q?=E8=87=AA=E5=8B=95=E7=94=9F=E6=88=90=E3=82=B3?= =?utf8?q?=E3=83=A1=E3=83=B3=E3=83=88=E5=89=8A=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- frontend/src/yukihane/inqubus/gui/ConfigDialog.java | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/frontend/src/yukihane/inqubus/gui/ConfigDialog.java b/frontend/src/yukihane/inqubus/gui/ConfigDialog.java index 96e48b1..d6d81da 100644 --- a/frontend/src/yukihane/inqubus/gui/ConfigDialog.java +++ b/frontend/src/yukihane/inqubus/gui/ConfigDialog.java @@ -836,7 +836,6 @@ public class ConfigDialog extends JDialog { */ public static void main(String args[]) { /* Set the Nimbus look and feel */ - // /* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel. * For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html */ @@ -847,16 +846,9 @@ public class ConfigDialog extends JDialog { break; } } - } catch (ClassNotFoundException ex) { - java.util.logging.Logger.getLogger(ConfigDialog.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); - } catch (InstantiationException ex) { - java.util.logging.Logger.getLogger(ConfigDialog.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); - } catch (IllegalAccessException ex) { - java.util.logging.Logger.getLogger(ConfigDialog.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); - } catch (UnsupportedLookAndFeelException ex) { + } catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) { java.util.logging.Logger.getLogger(ConfigDialog.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } - // /* Create and display the form */ java.awt.EventQueue.invokeLater(new Runnable() { -- 2.11.0