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 Show documentation
Show all versions of mixer2 Show documentation
Mixer2 is template engine for java.
package org.mixer2.util;
public class CastUtil {
@SuppressWarnings("unchecked")
public static T cast(Object object) {
return (T) object;
}
}