Skip to content

Commit e9d2e49

Browse files
committed
Reformat http
1 parent 904e0fd commit e9d2e49

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

common/src/main/kotlin/com/lambda/http/Request.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ import com.lambda.util.FolderRegister.createIfNotExists
2323
import java.io.File
2424
import java.net.HttpURLConnection
2525
import java.net.URI
26-
import java.net.URL
2726
import kotlin.time.Duration
2827
import kotlin.time.Duration.Companion.days
2928

common/src/main/kotlin/com/lambda/http/api/rpc/v1/endpoints/Login.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ fun login(
3535

3636
// The player's Mojang session hash.
3737
// example: 069a79f444e94726a5befca90e38aaf5
38-
hash: String
38+
hash: String,
3939
) =
4040
request("$endpoint/api/$version/login") {
4141
method(Method.POST)

common/src/main/kotlin/com/lambda/http/api/rpc/v1/models/Party.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
package com.lambda.http.api.rpc.v1.models
1919

2020
import com.google.gson.annotations.SerializedName
21-
import java.util.UUID
21+
import java.util.*
2222

2323
data class Party(
2424
// The ID of the party.

common/src/main/kotlin/com/lambda/http/api/rpc/v1/models/Player.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
package com.lambda.http.api.rpc.v1.models
1919

2020
import com.google.gson.annotations.SerializedName
21-
import java.util.UUID
21+
import java.util.*
2222

2323
data class Player(
2424
// The player's name.

0 commit comments

Comments
 (0)