Skip to content

Commit c811e39

Browse files
committed
ktlint formatting + update of user data after signInWithCustomToken + photoUrl and displayName implementation
1 parent 3dea253 commit c811e39

File tree

10 files changed

+846
-328
lines changed

10 files changed

+846
-328
lines changed

src/main/java/android/net/Uri.kt

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,16 @@ package android.net
33
import java.net.URI
44
import java.util.Collections
55

6-
class Uri(private val uri: URI) {
7-
6+
class Uri(
7+
private val uri: URI,
8+
) {
89
companion object {
910
@JvmStatic
1011
fun parse(uriString: String) = Uri(URI.create(uriString))
1112
}
1213

14+
override fun toString(): String = uri.toString()
15+
1316
val scheme get() = uri.scheme
1417
val port get() = uri.port
1518
val host get() = uri.host

0 commit comments

Comments
 (0)