From: rtrimana Date: Fri, 10 Jul 2020 18:07:48 +0000 (-0700) Subject: Adding missing 'add' into HashSet. X-Git-Url: http://plrg.eecs.uci.edu/git/?p=jpf-core.git;a=commitdiff_plain;h=332b6623f6b5d4cd9119c61352c804ef78870889 Adding missing 'add' into HashSet. --- diff --git a/src/main/gov/nasa/jpf/listener/DPORStateReducer.java b/src/main/gov/nasa/jpf/listener/DPORStateReducer.java index 8e688cf..0da718c 100644 --- a/src/main/gov/nasa/jpf/listener/DPORStateReducer.java +++ b/src/main/gov/nasa/jpf/listener/DPORStateReducer.java @@ -1038,9 +1038,9 @@ public class DPORStateReducer extends ListenerAdapter { } } else { choiceSet = new HashSet<>(); - choiceSet.add(firstChoice); doneBacktrackMap.put(stateId, choiceSet); } + choiceSet.add(firstChoice); return false; }