org.mixer2.util.CastUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mixer2-java5 Show documentation
Show all versions of mixer2-java5 Show documentation
mixer2 for java5. This is experimental project.
The newest version!
package org.mixer2.util;
public class CastUtil {
@SuppressWarnings("unchecked")
public static T cast(Object object) {
return (T) object;
}
}