Tab police needed yet again

git-svn-id: https://svn.apache.org/repos/asf/jmeter/trunk@1733393 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2016-03-03 00:17:37 +00:00
parent 5d7bf2a47b
commit cb2e528a2c
1 changed files with 4 additions and 4 deletions

View File

@ -212,17 +212,17 @@ public class GraphiteBackendListenerClient extends AbstractBackendListenerClient
@Override
public void handleSampleResults(List<SampleResult> sampleResults,
BackendListenerContext context) {
boolean samplersToFilterMatch;
boolean samplersToFilterMatch;
synchronized (LOCK) {
for (SampleResult sampleResult : sampleResults) {
getUserMetrics().add(sampleResult);
if(!summaryOnly) {
if (useRegexpForSamplersList) {
Matcher matcher = pattern.matcher(sampleResult.getSampleLabel());
samplersToFilterMatch = matcher.matches();
Matcher matcher = pattern.matcher(sampleResult.getSampleLabel());
samplersToFilterMatch = matcher.matches();
} else {
samplersToFilterMatch = samplersToFilter.contains(sampleResult.getSampleLabel());
samplersToFilterMatch = samplersToFilter.contains(sampleResult.getSampleLabel());
}
if (samplersToFilterMatch) {
SamplerMetric samplerMetric = getSamplerMetric(sampleResult.getSampleLabel());