Foramt code

feature/top10
Aurelien Hubert 7 years ago
parent 4d52f794dc
commit deec0aed26
  1. 8
      app/src/main/java/net/pokeranalytics/android/model/realm/Session.kt

@ -27,10 +27,6 @@ import kotlin.collections.ArrayList
open class Session : RealmObject(), SessionInterface, RowRepresentableDataSource,
RowEditable, RowRepresentable, ObjectSavable {
override fun uniqueIdentifier(): String {
return id
}
@PrimaryKey
var id = UUID.randomUUID().toString()
@ -254,6 +250,10 @@ open class Session : RealmObject(), SessionInterface, RowRepresentableDataSource
return 0.0
}
override fun uniqueIdentifier(): String {
return this.id
}
override fun getDisplayName(): String {
return "session ${this.creationDate}"
}

Loading…
Cancel
Save