Skip to content

Commit

Permalink
InvocationInfo wasn't serializable, but it was used as a field in Lin…
Browse files Browse the repository at this point in the history
…ker.CustomFunctionInvocation.
  • Loading branch information
nedtwigg committed Oct 7, 2015
1 parent f39b659 commit d6bc07a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion matlabcontrol/src/matlabcontrol/link/InvocationInfo.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.Serializable;
import java.lang.reflect.GenericArrayType;
import java.lang.reflect.Method;
import java.lang.reflect.ParameterizedType;
Expand All @@ -53,7 +54,9 @@
* @since 4.2.0
* @author <a href="mailto:nonother@gmail.com">Joshua Kaplan</a>
*/
class InvocationInfo {
class InvocationInfo implements Serializable {
private static final long serialVersionUID = 764281612994597133L;

/**
* The name of the function.
*/
Expand Down

0 comments on commit d6bc07a

Please sign in to comment.