All Downloads are FREE. Search and download functionalities are using the official Maven repository.

rpc.turbo.recycle.RecycleUtils Maven / Gradle / Ivy

The newest version!
package rpc.turbo.recycle;

public class RecycleUtils {

	public static void release(Object obj) {
		if (obj instanceof Recycleable) {
			((Recycleable) obj).recycle();
		}
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy