deprecate Reference, BitByte (kutil 1.18)

This commit is contained in:
Bixilon 2022-11-14 09:13:43 +01:00
parent 9e95992414
commit 89435bed4b
No known key found for this signature in database
GPG Key ID: 5CAD791931B09AC4
2 changed files with 2 additions and 0 deletions

View File

@ -12,6 +12,7 @@
*/ */
package de.bixilon.minosoft.util package de.bixilon.minosoft.util
@Deprecated("Kutil 1.18")
object BitByte { object BitByte {
inline fun isBitSet(`in`: Int, pos: Int): Boolean { inline fun isBitSet(`in`: Int, pos: Int): Boolean {

View File

@ -13,6 +13,7 @@
package de.bixilon.minosoft.util package de.bixilon.minosoft.util
@Deprecated("Kutil 1.18")
class Reference<T>( class Reference<T>(
var value: T, var value: T,
) )