Add missing `internal`
This commit is contained in:
parent
084c27a2bb
commit
a17932e17e
|
@ -18,15 +18,14 @@ package im.vector.matrix.android.internal.di
|
|||
|
||||
import javax.inject.Qualifier
|
||||
|
||||
// TODO Add internal ?
|
||||
@Qualifier
|
||||
@Retention(AnnotationRetention.RUNTIME)
|
||||
annotation class Authenticated
|
||||
internal annotation class Authenticated
|
||||
|
||||
@Qualifier
|
||||
@Retention(AnnotationRetention.RUNTIME)
|
||||
annotation class AuthenticatedIdentity
|
||||
internal annotation class AuthenticatedIdentity
|
||||
|
||||
@Qualifier
|
||||
@Retention(AnnotationRetention.RUNTIME)
|
||||
annotation class Unauthenticated
|
||||
internal annotation class Unauthenticated
|
||||
|
|
|
@ -20,16 +20,16 @@ import javax.inject.Qualifier
|
|||
|
||||
@Qualifier
|
||||
@Retention(AnnotationRetention.RUNTIME)
|
||||
annotation class AuthDatabase
|
||||
internal annotation class AuthDatabase
|
||||
|
||||
@Qualifier
|
||||
@Retention(AnnotationRetention.RUNTIME)
|
||||
annotation class SessionDatabase
|
||||
internal annotation class SessionDatabase
|
||||
|
||||
@Qualifier
|
||||
@Retention(AnnotationRetention.RUNTIME)
|
||||
annotation class CryptoDatabase
|
||||
internal annotation class CryptoDatabase
|
||||
|
||||
@Qualifier
|
||||
@Retention(AnnotationRetention.RUNTIME)
|
||||
annotation class IdentityDatabase
|
||||
internal annotation class IdentityDatabase
|
||||
|
|
|
@ -20,16 +20,16 @@ import javax.inject.Qualifier
|
|||
|
||||
@Qualifier
|
||||
@Retention(AnnotationRetention.RUNTIME)
|
||||
annotation class SessionFilesDirectory
|
||||
internal annotation class SessionFilesDirectory
|
||||
|
||||
@Qualifier
|
||||
@Retention(AnnotationRetention.RUNTIME)
|
||||
annotation class SessionCacheDirectory
|
||||
internal annotation class SessionCacheDirectory
|
||||
|
||||
@Qualifier
|
||||
@Retention(AnnotationRetention.RUNTIME)
|
||||
annotation class CacheDirectory
|
||||
internal annotation class CacheDirectory
|
||||
|
||||
@Qualifier
|
||||
@Retention(AnnotationRetention.RUNTIME)
|
||||
annotation class ExternalFilesDirectory
|
||||
internal annotation class ExternalFilesDirectory
|
||||
|
|
|
@ -16,6 +16,6 @@
|
|||
|
||||
package im.vector.matrix.android.internal.network.token
|
||||
|
||||
interface AccessTokenProvider {
|
||||
internal interface AccessTokenProvider {
|
||||
fun getToken(): String?
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue