Skip to content

Commit

Permalink
Make TypeCheckerAssistantFactory Serializable, fixes #785
Browse files Browse the repository at this point in the history
  • Loading branch information
nickbattle committed Feb 23, 2022
1 parent 206c53a commit 157955c
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
*/
package org.overture.typechecker.assistant;

import java.io.Serializable;
import java.util.Collection;
import java.util.LinkedList;
import java.util.List;
Expand Down Expand Up @@ -134,8 +135,10 @@
* @author ldc
*/
public class TypeCheckerAssistantFactory extends AstAssistantFactory
implements ITypeCheckerAssistantFactory
implements ITypeCheckerAssistantFactory, Serializable
{
private static final long serialVersionUID = 1L;

// instance variables of things to return
transient TypeComparator typeComp;
transient LexNameTokenAssistant lnt;
Expand Down

0 comments on commit 157955c

Please sign in to comment.