Skip to content

Commit

Permalink
Make Method.Signature serializable
Browse files Browse the repository at this point in the history
  • Loading branch information
jkschneider committed Jun 16, 2017
1 parent e2fa72d commit 90889a8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ sealed class Type: Serializable {

fun hasFlags(vararg test: Flag) = test.all { flags.contains(it) }

data class Signature(val returnType: Type?, val paramTypes: List<Type>)
data class Signature(val returnType: Type?, val paramTypes: List<Type>): Serializable

internal fun deepEquals(method: Method?): Boolean {
if(method == null)
Expand Down

0 comments on commit 90889a8

Please sign in to comment.