Skip to content
This repository was archived by the owner on Nov 28, 2025. It is now read-only.

Commit 20a9a8b

Browse files
committed
im so stupid
1 parent 51f637b commit 20a9a8b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
kotlin.code.style=official
2-
tide.version=3.2
2+
tide.version=3.3

src/main/kotlin/io/github/dockyardmc/tide/stream/StreamCodec.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,10 +176,10 @@ interface StreamCodec<T> {
176176
val leastSignificant = LONG.read(buffer)
177177
return UUID(mostSignificant, leastSignificant)
178178
}
179+
}
179180

180-
fun <T> recursive(self: (StreamCodec<T>) -> StreamCodec<T>): RecursiveStreamCodec<T> {
181-
return RecursiveStreamCodec<T>(self)
182-
}
181+
fun <T> recursive(self: (StreamCodec<T>) -> StreamCodec<T>): RecursiveStreamCodec<T> {
182+
return RecursiveStreamCodec<T>(self)
183183
}
184184

185185
val UUID_STRING = STRING.transform<UUID>({ uuid -> uuid.toString() }, { string -> java.util.UUID.fromString(string) })

0 commit comments

Comments
 (0)