Skip to content

Commit 27daa71

Browse files
committed
fix: correct property declaration
1 parent b1cc56a commit 27daa71

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/kotlin/com/ctrlhub/core/assets/equipment/resource/EquipmentResources.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,15 +71,15 @@ class EquipmentModel @JsonCreator constructor(
7171
}
7272

7373
class EquipmentModelSpecification @JsonCreator constructor(
74-
@JsonProperty("vibration") vibration: EquipmentSpecificationVibration? = null
74+
@JsonProperty("vibration") var vibration: EquipmentSpecificationVibration? = null
7575
) {
7676
constructor(): this(
7777
vibration = null
7878
)
7979
}
8080

8181
class EquipmentSpecificationVibration @JsonCreator constructor(
82-
@JsonProperty("magnitude") magnitude: Double = 0.0
82+
@JsonProperty("magnitude") var magnitude: Double = 0.0
8383
) {
8484
constructor(): this(
8585
magnitude = 0.0

0 commit comments

Comments
 (0)