Fixed warnings

This commit is contained in:
nathan 2020-09-10 14:39:39 +02:00
parent 60e8c5dc2e
commit 8885107052

View File

@ -131,7 +131,7 @@ class RmiSpamSyncTest : BaseTest() {
private class TestObjectImpl(private val counter: AtomicLong) : TestObject {
@Override
override fun setOther(aFloat: Long): Boolean {
override fun setOther(value: Long): Boolean {
counter.getAndIncrement()
return true
}