View | Details | Raw Unified | Return to bug 54826
Collapse All | Expand All

(-)a/src/components/org/apache/jmeter/visualizers/RenderAsJSON.java (-2 / +1 lines)
Lines 31-37 public class RenderAsJSON extends SamplerResultTab implements ResultRenderer { Link Here
31
31
32
    private static final String NORMAL_CHARACTER_REGEX = "[^\"\\\\]";  // $NON-NLS-1$
32
    private static final String NORMAL_CHARACTER_REGEX = "[^\"\\\\]";  // $NON-NLS-1$
33
33
34
    private static final String STRING_REGEX = "\"(" + ESC_CHAR_REGEX + "|" + NORMAL_CHARACTER_REGEX + ")*\""; // $NON-NLS-1$
34
    private static final String STRING_REGEX = "\"(" + ESC_CHAR_REGEX + "|" + NORMAL_CHARACTER_REGEX + ")*+\""; // $NON-NLS-1$
35
35
36
    // This 'other value' regex is deliberately weak, even accepting an empty string, to be useful when reporting malformed data.
36
    // This 'other value' regex is deliberately weak, even accepting an empty string, to be useful when reporting malformed data.
37
    private static final String OTHER_VALUE_REGEX = "[^\\{\\[\\]\\}\\,]*"; // $NON-NLS-1$
37
    private static final String OTHER_VALUE_REGEX = "[^\\{\\[\\]\\}\\,]*"; // $NON-NLS-1$
38
- 

Return to bug 54826