From 4207be507802aafce7c8a157c3ff20c93690181b Mon Sep 17 00:00:00 2001 From: DBotThePony <dbotthepony@yandex.ru> Date: Sun, 30 Mar 2025 16:35:19 +0700 Subject: [PATCH] Remove byte supplier and short supplier --- src/main/kotlin/ru/dbotthepony/mc/otm/util/ByteSupplier.kt | 5 ----- src/main/kotlin/ru/dbotthepony/mc/otm/util/ShortSupplier.kt | 5 ----- 2 files changed, 10 deletions(-) delete mode 100644 src/main/kotlin/ru/dbotthepony/mc/otm/util/ByteSupplier.kt delete mode 100644 src/main/kotlin/ru/dbotthepony/mc/otm/util/ShortSupplier.kt diff --git a/src/main/kotlin/ru/dbotthepony/mc/otm/util/ByteSupplier.kt b/src/main/kotlin/ru/dbotthepony/mc/otm/util/ByteSupplier.kt deleted file mode 100644 index cbb644ced..000000000 --- a/src/main/kotlin/ru/dbotthepony/mc/otm/util/ByteSupplier.kt +++ /dev/null @@ -1,5 +0,0 @@ -package ru.dbotthepony.mc.otm.util - -interface ByteSupplier { - fun getAsByte(): Byte -} diff --git a/src/main/kotlin/ru/dbotthepony/mc/otm/util/ShortSupplier.kt b/src/main/kotlin/ru/dbotthepony/mc/otm/util/ShortSupplier.kt deleted file mode 100644 index 36b14405d..000000000 --- a/src/main/kotlin/ru/dbotthepony/mc/otm/util/ShortSupplier.kt +++ /dev/null @@ -1,5 +0,0 @@ -package ru.dbotthepony.mc.otm.util - -interface ShortSupplier { - fun getAsShort(): Short -}