Author: sebb
Date: Thu Feb 9 01:07:38 2012
New Revision: 1242198
URL: http://svn.apache.org/viewvc?rev=1242198&view=rev
Log:
Remove unthrown Exception
Modified:
jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/proxy/ProxyControl.java
Modified: jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/proxy/ProxyControl.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/proxy/ProxyControl.java?rev=1242198&r1=1242197&r2=1242198&view=diff
==============================================================================
--- jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/proxy/ProxyControl.java
(original)
+++ jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/proxy/ProxyControl.java
Thu Feb 9 01:07:38 2012
@@ -546,7 +546,7 @@ public class ProxyControl extends Generi
* Called from Application Thread that needs to update GUI (JMeterTreeModel)
*/
private void addDivider(final JMeterTreeModel model, final JMeterTreeNode node)
- throws IllegalUserActionException, InterruptedException, InvocationTargetException
{
+ throws InterruptedException, InvocationTargetException {
final GenericController sc = new GenericController();
sc.setProperty(TestElement.GUI_CLASS, LOGIC_CONTROLLER_GUI);
sc.setName("-------------------"); // $NON-NLS-1$
@@ -575,7 +575,7 @@ public class ProxyControl extends Generi
* @throws InterruptedException
*/
private void addSimpleController(final JMeterTreeModel model, final JMeterTreeNode node,
String name)
- throws IllegalUserActionException, InterruptedException, InvocationTargetException
{
+ throws InterruptedException, InvocationTargetException {
final GenericController sc = new GenericController();
sc.setProperty(TestElement.GUI_CLASS, LOGIC_CONTROLLER_GUI);
sc.setName(name);
@@ -604,7 +604,7 @@ public class ProxyControl extends Generi
* @throws InterruptedException
*/
private void addTransactionController(final JMeterTreeModel model, final JMeterTreeNode
node, String name)
- throws IllegalUserActionException, InterruptedException, InvocationTargetException
{
+ throws InterruptedException, InvocationTargetException {
final TransactionController sc = new TransactionController();
sc.setProperty(TestElement.GUI_CLASS, TRANSACTION_CONTROLLER_GUI);
sc.setName(name);
|