This commit is contained in:
Yorick Rommers
2017-05-02 13:37:34 +02:00
parent c1c0437b21
commit f6c4bb5e36
4 changed files with 69 additions and 20 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ public class Automata <T extends Comparable> {
protected SortedSet<T> beginStates;
protected SortedSet<T> eindStates;
private SortedSet<Character> symbols;
protected SortedSet<Character> symbols;
public Automata(Character [] symbols) {
this(new TreeSet<Character>(Arrays.asList(symbols)));