1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2024-06-25 22:53:22 +00:00

Remove IArguments.releaseImmediate

Was deprecated pre-1.19, just forgot to remove it as part of the update.
This commit is contained in:
Jonathan Coates 2022-07-02 17:00:14 +01:00
parent 92c613a7a2
commit e906f3ebc3
No known key found for this signature in database
GPG Key ID: B9E431FF07C98D06

View File

@ -443,16 +443,4 @@ default String optString( int index, String def ) throws LuaException
{
return optTable( index ).orElse( def );
}
/**
* This is called when the current function finishes, before any main thread tasks have run.
*
* Called when the current function returns, and so some values are no longer guaranteed to be safe to access.
*
* @deprecated This method was an internal implementation detail and is no longer used.
*/
@Deprecated
default void releaseImmediate()
{
}
}