Skip to content
This repository has been archived by the owner on Dec 13, 2023. It is now read-only.

Commit

Permalink
Change property visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
ttassain committed Aug 9, 2019
1 parent 0799d3c commit 45dea44
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sdk/src/main/kotlin/org/ocast/sdk/core/models/OCast.kt
Expand Up @@ -285,8 +285,8 @@ open class OCastRawDataLayer(
* @property code The code associated with the data. Equals `null` for events.
* @constructor Creates an instance of [OCastReplyEventParams].
*/
open class OCastReplyEventParams(
@JsonProperty("code") internal open val code: Int?
class OCastReplyEventParams(
@JsonProperty("code") val code: Int?
)

/**
Expand Down

0 comments on commit 45dea44

Please sign in to comment.