Skip to content
Snippets Groups Projects
Commit 82a78fc8 authored by Kamal Bramwell's avatar Kamal Bramwell
Browse files

Renamed contact property -> userProfile for clarity

parent e10b6cbf
No related branches found
No related tags found
No related merge requests found
...@@ -10,7 +10,7 @@ interface E2e { ...@@ -10,7 +10,7 @@ interface E2e {
val id: E2eId val id: E2eId
val payloadSize: Long val payloadSize: Long
val receptionIdentity: ReceptionId val receptionIdentity: ReceptionId
val contact: Contact val userProfile: Contact
fun setPartitionSize(bytes: Long): Long fun setPartitionSize(bytes: Long): Long
......
...@@ -16,7 +16,7 @@ open class E2eAdapter(protected val e2e: E2eBindings) : E2e{ ...@@ -16,7 +16,7 @@ open class E2eAdapter(protected val e2e: E2eBindings) : E2e{
get() = e2e.payloadSize() get() = e2e.payloadSize()
override val receptionIdentity: ReceptionId override val receptionIdentity: ReceptionId
get() = e2e.receptionID get() = e2e.receptionID
override val contact: Contact override val userProfile: Contact
get() = ContactAdapter(e2e.contact) get() = ContactAdapter(e2e.contact)
override fun setPartitionSize(bytes: Long): Long { override fun setPartitionSize(bytes: Long): Long {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment