mirror of https://github.com/apache/jmeter.git
remove copy/paste between addRawSubResult and storeSubResult
git-svn-id: https://svn.apache.org/repos/asf/jmeter/trunk@1418480 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d4a4d08d4c
commit
d1d2cc1f4e
|
|
@ -576,11 +576,7 @@ public class SampleResult implements Serializable {
|
|||
* @param subResult
|
||||
*/
|
||||
public void addRawSubResult(SampleResult subResult){
|
||||
if (subResults == null) {
|
||||
subResults = new ArrayList<SampleResult>();
|
||||
}
|
||||
subResults.add(subResult);
|
||||
subResult.setParent(this);
|
||||
storeSubResult(subResult);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in New Issue