You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by se...@apache.org on 2012/09/06 01:18:04 UTC

svn commit: r1381439 - /jmeter/trunk/src/core/org/apache/jmeter/gui/GuiPackage.java

Author: sebb
Date: Wed Sep  5 23:18:03 2012
New Revision: 1381439

URL: http://svn.apache.org/viewvc?rev=1381439&view=rev
Log:
Remove unnecessary and distracting line-wraps

Modified:
    jmeter/trunk/src/core/org/apache/jmeter/gui/GuiPackage.java

Modified: jmeter/trunk/src/core/org/apache/jmeter/gui/GuiPackage.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/core/org/apache/jmeter/gui/GuiPackage.java?rev=1381439&r1=1381438&r2=1381439&view=diff
==============================================================================
--- jmeter/trunk/src/core/org/apache/jmeter/gui/GuiPackage.java (original)
+++ jmeter/trunk/src/core/org/apache/jmeter/gui/GuiPackage.java Wed Sep  5 23:18:03 2012
@@ -326,20 +326,16 @@ public final class GuiPackage implements
                     msg,
                     "Missing jar? See log file." ,
                     JOptionPane.ERROR_MESSAGE);
-            throw new RuntimeException(e.toString(), e); // Probably a missing
-                                                        // jar
+            throw new RuntimeException(e.toString(), e); // Probably a missing jar
         } catch (ClassNotFoundException e) {
             log.error("Problem retrieving gui for " + objClass, e);
-            throw new RuntimeException(e.toString(), e); // Programming error:
-                                                        // bail out.
+            throw new RuntimeException(e.toString(), e); // Programming error: bail out.
         } catch (InstantiationException e) {
             log.error("Problem retrieving gui for " + objClass, e);
-            throw new RuntimeException(e.toString(), e); // Programming error:
-                                                        // bail out.
+            throw new RuntimeException(e.toString(), e); // Programming error: bail out.
         } catch (IllegalAccessException e) {
             log.error("Problem retrieving gui for " + objClass, e);
-            throw new RuntimeException(e.toString(), e); // Programming error:
-                                                        // bail out.
+            throw new RuntimeException(e.toString(), e); // Programming error: bail out.
         }
     }