Bug 55064 - Useless processing in ReportTreeListener.isValidDragAction()

Bugzilla Id: 55064

git-svn-id: https://svn.apache.org/repos/asf/jmeter/trunk@1490008 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Philippe Mouawad 2013-06-05 19:04:42 +00:00
parent 386d7a43ca
commit c67d8701bb
2 changed files with 2 additions and 0 deletions

View File

@ -208,6 +208,7 @@ public class ReportTreeListener implements TreeSelectionListener, MouseListener,
for (int i = 0; i < path.length; i++) { for (int i = 0; i < path.length; i++) {
if (contains(source, path[i])) { if (contains(source, path[i])) {
isValid = false; isValid = false;
break;
} }
} }
return isValid; return isValid;

View File

@ -234,6 +234,7 @@ Transaction Controller now sets Response Code of Generated Parent Sampler (if Ge
<li>Updated to xstream 1.4.4 (from 1.4.2)</li> <li>Updated to xstream 1.4.4 (from 1.4.2)</li>
<li><bugzilla>54912</bugzilla> - JMeterTreeListener should use constants</li> <li><bugzilla>54912</bugzilla> - JMeterTreeListener should use constants</li>
<li><bugzilla>55065</bugzilla> - wasted work in Spline3.converge()</li> <li><bugzilla>55065</bugzilla> - wasted work in Spline3.converge()</li>
<li><bugzilla>55064</bugzilla> - Useless processing in ReportTreeListener.isValidDragAction()</li>
</ul> </ul>
</section> </section>