mirror of
https://github.com/MewoLab/AquaDX.git
synced 2026-02-13 05:37:27 +08:00
[O] Assume non-null
This commit is contained in:
@@ -16,9 +16,9 @@ class PropertyEntry {
|
|||||||
var propertyKey: String = ""
|
var propertyKey: String = ""
|
||||||
|
|
||||||
@Column(columnDefinition = "TEXT")
|
@Column(columnDefinition = "TEXT")
|
||||||
var propertyValue: String? = null
|
var propertyValue: String = ""
|
||||||
|
|
||||||
constructor(propertyKey: String, propertyValue: String?) {
|
constructor(propertyKey: String, propertyValue: String) {
|
||||||
this.propertyKey = propertyKey
|
this.propertyKey = propertyKey
|
||||||
this.propertyValue = propertyValue
|
this.propertyValue = propertyValue
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user