Skip to content

Commit 05b3a39

Browse files
Merge pull request #124 from cisco-system-traffic-generator/Emil-Gustafsson-patch-2
fix method call to correct method
2 parents 4770e8f + ba21ab1 commit 05b3a39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/cisco/trex/stateless/TRexClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ public void addStream(int portIndex, String profileId, Stream stream) {
200200
}
201201

202202
public void addStream(int portIndex, int streamId, JsonObject stream) {
203-
addStream(portIndex, "", streamId, stream);
203+
addStream(portIndex, "", streamId, (Object) stream);
204204
}
205205

206206
public void addStream(int portIndex, String profileId, int streamId, JsonObject stream) {

0 commit comments

Comments
 (0)