Skip to content

Commit 769c270

Browse files
committed
remove unneeded class
1 parent cda4f13 commit 769c270

File tree

3 files changed

+0
-35
lines changed

3 files changed

+0
-35
lines changed

library/src/androidTest/java/org/xmtp/android/library/GroupTest.kt

-9
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,9 @@
11
package org.xmtp.android.library
22

3-
import android.util.Log
43
import androidx.test.ext.junit.runners.AndroidJUnit4
54
import androidx.test.platform.app.InstrumentationRegistry
65
import app.cash.turbine.test
76
import kotlinx.coroutines.ExperimentalCoroutinesApi
8-
import kotlinx.coroutines.coroutineScope
9-
import kotlinx.coroutines.flow.collect
10-
import kotlinx.coroutines.flow.mapLatest
11-
import kotlinx.coroutines.flow.toList
12-
import kotlinx.coroutines.launch
137
import kotlinx.coroutines.runBlocking
148
import org.junit.Assert.assertEquals
159
import org.junit.Assert.assertThrows
@@ -24,9 +18,6 @@ import org.xmtp.android.library.codecs.ReactionSchema
2418
import org.xmtp.android.library.messages.PrivateKey
2519
import org.xmtp.android.library.messages.PrivateKeyBuilder
2620
import org.xmtp.android.library.messages.walletAddress
27-
import java.lang.Thread.sleep
28-
import java.util.Date
29-
import kotlin.time.Duration
3021

3122
@RunWith(AndroidJUnit4::class)
3223
class GroupTest {

library/src/main/java/org/xmtp/android/library/Conversations.kt

-9
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,13 @@ import android.util.Log
44
import io.grpc.StatusException
55
import kotlinx.coroutines.CancellationException
66
import kotlinx.coroutines.channels.awaitClose
7-
import kotlinx.coroutines.coroutineScope
87
import kotlinx.coroutines.flow.Flow
98
import kotlinx.coroutines.flow.MutableStateFlow
109
import kotlinx.coroutines.flow.callbackFlow
1110
import kotlinx.coroutines.flow.flow
12-
import kotlinx.coroutines.launch
1311
import kotlinx.coroutines.runBlocking
1412
import org.xmtp.android.library.GRPCApiClient.Companion.makeQueryRequest
1513
import org.xmtp.android.library.GRPCApiClient.Companion.makeSubscribeRequest
16-
import org.xmtp.android.library.libxmtp.Message
1714
import org.xmtp.android.library.messages.DecryptedMessage
1815
import org.xmtp.android.library.messages.Envelope
1916
import org.xmtp.android.library.messages.EnvelopeBuilder
@@ -27,15 +24,12 @@ import org.xmtp.android.library.messages.Topic
2724
import org.xmtp.android.library.messages.createDeterministic
2825
import org.xmtp.android.library.messages.decrypt
2926
import org.xmtp.android.library.messages.getInvitation
30-
import org.xmtp.android.library.messages.getPublicKeyBundle
3127
import org.xmtp.android.library.messages.header
3228
import org.xmtp.android.library.messages.involves
3329
import org.xmtp.android.library.messages.recipientAddress
3430
import org.xmtp.android.library.messages.senderAddress
3531
import org.xmtp.android.library.messages.sentAt
36-
import org.xmtp.android.library.messages.toPublicKeyBundle
3732
import org.xmtp.android.library.messages.toSignedPublicKeyBundle
38-
import org.xmtp.android.library.messages.toV2
3933
import org.xmtp.android.library.messages.walletAddress
4034
import org.xmtp.proto.keystore.api.v1.Keystore.TopicMap.TopicData
4135
import org.xmtp.proto.message.contents.Contact
@@ -44,10 +38,7 @@ import uniffi.xmtpv3.FfiConversationCallback
4438
import uniffi.xmtpv3.FfiConversations
4539
import uniffi.xmtpv3.FfiGroup
4640
import uniffi.xmtpv3.FfiListConversationsOptions
47-
import uniffi.xmtpv3.FfiMessage
48-
import uniffi.xmtpv3.FfiMessageCallback
4941
import uniffi.xmtpv3.FfiStreamCloser
50-
import uniffi.xmtpv3.org.xmtp.android.library.libxmtp.GroupEmitter
5142
import java.util.Date
5243
import kotlin.time.Duration.Companion.nanoseconds
5344
import kotlin.time.DurationUnit

library/src/main/java/org/xmtp/android/library/libxmtp/GroupEmitter.kt

-17
This file was deleted.

0 commit comments

Comments
 (0)