Author: pmouawad
Date: Wed Dec 28 20:05:27 2016
New Revision: 1776320

URL: http://svn.apache.org/viewvc?rev=1776320&view=rev
Log:
sonar: ignore false positive

Modified:
    
jmeter/trunk/src/core/org/apache/jmeter/report/processor/ExternalSampleSorter.java

Modified: 
jmeter/trunk/src/core/org/apache/jmeter/report/processor/ExternalSampleSorter.java
URL: 
http://svn.apache.org/viewvc/jmeter/trunk/src/core/org/apache/jmeter/report/processor/ExternalSampleSorter.java?rev=1776320&r1=1776319&r2=1776320&view=diff
==============================================================================
--- 
jmeter/trunk/src/core/org/apache/jmeter/report/processor/ExternalSampleSorter.java
 (original)
+++ 
jmeter/trunk/src/core/org/apache/jmeter/report/processor/ExternalSampleSorter.java
 Wed Dec 28 20:05:27 2016
@@ -376,7 +376,7 @@ public class ExternalSampleSorter extend
             try {
                 newLeft = jobLeft.getResult();
                 newRight = jobRight.getResult();
-            } catch (InterruptedException ie) {
+            } catch (InterruptedException ie) { // NOSONAR we throw another 
exception
                 throw new SampleException("Unexpected interruption !", ie);
             }
         } else {
@@ -457,7 +457,7 @@ public class ExternalSampleSorter extend
                 try {
                     leftFile = leftJob.getResult();
                     rightFile = rightJob.getResult();
-                } catch (InterruptedException ie) {
+                } catch (InterruptedException ie) { // NOSONAR We throw an 
exception
                     throw new SampleException("Unexpected interruption !", ie);
                 }
             } else {


Reply via email to