align on other runtimes

This commit is contained in:
Eric Vergnaud 2019-08-24 01:44:36 +08:00
parent b43a4c3a80
commit 32470dbab4
1 changed files with 0 additions and 6 deletions

View File

@ -139,12 +139,6 @@ DFAState.prototype.toString = function() {
DFAState.prototype.hashCode = function() {
var hash = new Hash();
hash.update(this.configs);
if(this.isAcceptState) {
if (this.predicates !== null)
hash.update(this.predicates);
else
hash.update(this.prediction);
}
return hash.finish();
};