We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b52625c commit 9563999Copy full SHA for 9563999
src/main/java/com/cisco/trex/stateful/api/lowlevel/ASTFProgram.java
@@ -648,8 +648,8 @@ public int add(String base64Buf) {
648
if (bufHash.containsKey(sha256Buf)) {
649
return bufHash.get(sha256Buf);
650
}
651
- bufList.add(base64Buf);
652
- int newIndex = bufList.size() - 1;
+ list.add(base64Buf);
+ int newIndex = list.size() - 1;
653
bufHash.put(sha256Buf, newIndex);
654
return newIndex;
655
0 commit comments