Skip to content

Commit

Permalink
Fixed error when no classes were sent from the agent
Browse files Browse the repository at this point in the history
  • Loading branch information
viktorbll committed Jul 22, 2020
1 parent 38cbd9e commit ea9fd21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/kotlin/build/Model.kt
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ data class AgentBuildData(
}

@Serializable
data class CodeData(val classBytes: Map<String, ByteArray>)
data class CodeData(val classBytes: Map<String, ByteArray> = emptyMap())

@Serializable
data class DiffTypeMethods(
Expand Down

0 comments on commit ea9fd21

Please sign in to comment.