mirror of https://github.com/apache/jmeter.git
Compare commits
2 Commits
64f24210f8
...
fdba1e42b3
| Author | SHA1 | Date |
|---|---|---|
|
|
fdba1e42b3 | |
|
|
515d06c601 |
|
|
@ -442,7 +442,6 @@ public class ArgumentsPanel extends AbstractConfigGui implements ActionListener
|
||||||
int[] rowsSelected = table.getSelectedRows();
|
int[] rowsSelected = table.getSelectedRows();
|
||||||
GuiUtils.stopTableEditing(table);
|
GuiUtils.stopTableEditing(table);
|
||||||
int selectedRowsCount = rowsSelected.length;
|
int selectedRowsCount = rowsSelected.length;
|
||||||
|
|
||||||
if (selectedRowsCount > 0 && rowsSelected[selectedRowsCount - 1] < table.getRowCount() - 1) {
|
if (selectedRowsCount > 0 && rowsSelected[selectedRowsCount - 1] < table.getRowCount() - 1) {
|
||||||
table.clearSelection();
|
table.clearSelection();
|
||||||
for (int i = selectedRowsCount - 1; i >= 0; i--) {
|
for (int i = selectedRowsCount - 1; i >= 0; i--) {
|
||||||
|
|
|
||||||
|
|
@ -203,8 +203,7 @@ public class TestCompiler implements HashTreeTraverser {
|
||||||
List<Assertion> assertions = new ArrayList<>();
|
List<Assertion> assertions = new ArrayList<>();
|
||||||
List<PostProcessor> posts = new ArrayList<>();
|
List<PostProcessor> posts = new ArrayList<>();
|
||||||
List<PreProcessor> pres = new ArrayList<>();
|
List<PreProcessor> pres = new ArrayList<>();
|
||||||
int stackSize = stack.size();
|
for (int i = stack.size(); i > 0; i--) {
|
||||||
for (int i = stackSize; i > 0; i--) {
|
|
||||||
addDirectParentControllers(controllers, stack.get(i - 1));
|
addDirectParentControllers(controllers, stack.get(i - 1));
|
||||||
List<PreProcessor> tempPre = new ArrayList<>();
|
List<PreProcessor> tempPre = new ArrayList<>();
|
||||||
List<PostProcessor> tempPost = new ArrayList<>();
|
List<PostProcessor> tempPost = new ArrayList<>();
|
||||||
|
|
@ -249,8 +248,7 @@ public class TestCompiler implements HashTreeTraverser {
|
||||||
List<Assertion> assertions = new ArrayList<>();
|
List<Assertion> assertions = new ArrayList<>();
|
||||||
List<PostProcessor> posts = new ArrayList<>();
|
List<PostProcessor> posts = new ArrayList<>();
|
||||||
List<PreProcessor> pres = new ArrayList<>();
|
List<PreProcessor> pres = new ArrayList<>();
|
||||||
int stackSize = stack.size();
|
for (int i = stack.size(); i > 0; i--) {
|
||||||
for (int i = stackSize; i > 0; i--) {
|
|
||||||
addDirectParentControllers(controllers, stack.get(i - 1));
|
addDirectParentControllers(controllers, stack.get(i - 1));
|
||||||
for (Object item : testTree.list(stack.subList(0, i))) {
|
for (Object item : testTree.list(stack.subList(0, i))) {
|
||||||
if (item instanceof SampleListener) {
|
if (item instanceof SampleListener) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue