Bassebombecraft

Bassebombecraft

18.5k Downloads

Removed depreated methods in InventoryItemActionStrategy interface

Closed this issue ยท 1 comments

commented

Removed the deprecated methods:

	/**
	 * Get the area-of-effect range in blocks where the effect is triggered if an
	 * entity enters.
	 * 
	 * @return area-of-effect range in blocks where the effect is triggered if an
	 *         entity enters.
	 * 
	 * @throws OperationNotSupportedException migrated methods should throw this to
	 *                                        signal an error.
	 */
	@Deprecated
	int getEffectRange() throws OperationNotSupportedException;

	/**
	 * Get array of rendering info's used to render mist.
	 * 
	 * @return array of rendering info's used to render mist.
	 * 
	 * @throws OperationNotSupportedException migrated methods should throw this to
	 *                                        signal an error.
	 */
	@Deprecated
	ParticleRenderingInfo[] getRenderingInfos() throws OperationNotSupportedException;

commented

Resolved with commit 70f89da.