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

(-)src/components/org/apache/jmeter/config/CSVDataSet.java (-1 / +1 lines)
Lines 156-162 Link Here
156
            delim=",";
156
            delim=",";
157
        }
157
        }
158
        if (vars == null) {
158
        if (vars == null) {
159
            String _fileName = getFilename();
159
            String _fileName = getFilename().trim();
160
            String mode = getShareMode();
160
            String mode = getShareMode();
161
            int modeInt = CSVDataSetBeanInfo.getShareModeAsInt(mode);
161
            int modeInt = CSVDataSetBeanInfo.getShareModeAsInt(mode);
162
            switch(modeInt){
162
            switch(modeInt){
(-)src/protocol/http/org/apache/jmeter/protocol/http/util/accesslog/TCLogParser.java (-1 / +1 lines)
Lines 183-189 Link Here
183
     */
183
     */
184
    @Override
184
    @Override
185
    public void setSourceFile(String source) {
185
    public void setSourceFile(String source) {
186
        this.FILENAME = source;
186
        this.FILENAME = source.trim();
187
    }
187
    }
188
188
189
    /**
189
    /**

Return to bug 56877