Browse Source

Changed visibility to support inheritance

git-svn-id: https://www.prismmodelchecker.org/svn/prism/prism/trunk@7232 bbc10eb1-c90d-0410-af57-cb519fbb1720
master
Mateusz Ujma 13 years ago
parent
commit
3089715c80
  1. 4
      prism/src/explicit/IndexedSet.java

4
prism/src/explicit/IndexedSet.java

@ -34,8 +34,8 @@ import java.util.*;
*/ */
public class IndexedSet<T> implements StateStorage<T> public class IndexedSet<T> implements StateStorage<T>
{ {
private Map<T, Integer> set;
private int indexOfLastAdd;
protected Map<T, Integer> set;
protected int indexOfLastAdd;
public IndexedSet() public IndexedSet()
{ {

Loading…
Cancel
Save