1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2025-11-09 09:52:59 +00:00

Add a whole bunch of missing @since annotations

This commit is contained in:
Jonathan Coates
2022-10-31 20:09:47 +00:00
parent 93f747fb54
commit f528046535
5 changed files with 6 additions and 2 deletions

View File

@@ -25,6 +25,7 @@ import javax.annotation.Nonnull;
* :::
*
* @cc.module energy_storage
* @cc.since 1.94.0
*/
public class EnergyMethods implements GenericPeripheral
{

View File

@@ -35,6 +35,7 @@ import static dan200.computercraft.shared.peripheral.generic.methods.ArgumentHel
* Methods for interacting with tanks and other fluid storage blocks.
*
* @cc.module fluid_storage
* @cc.since 1.94.0
*/
public class FluidMethods implements GenericPeripheral
{

View File

@@ -36,6 +36,7 @@ import static dan200.computercraft.shared.peripheral.generic.methods.ArgumentHel
* Methods for interacting with inventories.
*
* @cc.module inventory
* @cc.since 1.94.0
*/
public class InventoryMethods implements GenericPeripheral
{
@@ -168,6 +169,7 @@ public class InventoryMethods implements GenericPeripheral
* end
* print(total)
* }</pre>
* @cc.since 1.96.0
*/
@LuaFunction( mainThread = true )
public static int getItemLimit( IItemHandler inventory, int slot ) throws LuaException