mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-05 20:15:59 +01:00
Remove debugging fields
This commit is contained in:
parent
4aaecb7df8
commit
0feafbf7ed
1 changed files with 1 additions and 4 deletions
|
@ -16,7 +16,6 @@ import static org.pgpainless.decryption_verification.syntax_check.StackAlphabet.
|
|||
|
||||
public class PDA {
|
||||
|
||||
private static int ID = 0;
|
||||
private static final Logger LOGGER = LoggerFactory.getLogger(PDA.class);
|
||||
|
||||
/**
|
||||
|
@ -171,13 +170,11 @@ public class PDA {
|
|||
|
||||
private final Stack<StackAlphabet> stack = new Stack<>();
|
||||
private State state;
|
||||
private int id;
|
||||
|
||||
public PDA() {
|
||||
state = State.OpenPgpMessage;
|
||||
stack.push(terminus);
|
||||
stack.push(msg);
|
||||
this.id = ID++;
|
||||
}
|
||||
|
||||
public void next(InputAlphabet input) throws MalformedOpenPgpMessageException {
|
||||
|
@ -240,6 +237,6 @@ public class PDA {
|
|||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "PDA " + id + ": State: " + state + " Stack: " + stack;
|
||||
return "State: " + state + " Stack: " + stack;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue