Author: pmouawad
Date: Wed Jul 25 21:11:42 2018
New Revision: 1836672
URL: http://svn.apache.org/viewvc?rev=1836672&view=rev
Log:
Bug 61635 - Add a menu to restart JMeter
Fix javadoc and sonar warning
Bugzilla Id: 61635
Modified:
jmeter/trunk/src/core/org/apache/jmeter/gui/action/Restart.java
Modified: jmeter/trunk/src/core/org/apache/jmeter/gui/action/Restart.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/core/org/apache/jmeter/gui/action/Restart.java?rev=1836672&r1=1836671&r2=1836672&view=diff
==============================================================================
--- jmeter/trunk/src/core/org/apache/jmeter/gui/action/Restart.java (original)
+++ jmeter/trunk/src/core/org/apache/jmeter/gui/action/Restart.java Wed Jul 25 21:11:42 2018
@@ -79,9 +79,8 @@ public class Restart extends AbstractAct
*
* @param runBeforeRestart
* some custom code to be run before restarting
- * @throws Exception
*/
- public static void restartApplication(Runnable runBeforeRestart) throws Exception {
+ public static void restartApplication(Runnable runBeforeRestart) {
// java binary
String java = System.getProperty("java.home") + "/bin/java";
// vm arguments
|