From 44b16e26254e434860508b0e1e72e7fd2f5e11da Mon Sep 17 00:00:00 2001 From: Robinson Date: Sun, 20 Aug 2023 22:17:12 +0200 Subject: [PATCH] Fixed Uint -> UInt --- src/dorkbox/bytes/BigEndian.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dorkbox/bytes/BigEndian.kt b/src/dorkbox/bytes/BigEndian.kt index ff1d35f..31ac947 100644 --- a/src/dorkbox/bytes/BigEndian.kt +++ b/src/dorkbox/bytes/BigEndian.kt @@ -259,7 +259,7 @@ object BigEndian { /** * UNSIGNED INT to and from bytes */ - object Uint_ { + object UInt_ { fun from(bytes: ByteArray, offset: Int, bytenum: Int): UInt { var number = 0 when (bytenum) {