* @return The result of compiling this Soy file set into a Java object.
* @throws SoySyntaxException If a syntax error is found.
* @deprecated Use {@link #compileToTofu(com.google.template.soy.tofu.SoyTofuOptions)}.
*/
@Deprecated public SoyTofu compileToJavaObj(boolean useCaching) throws SoySyntaxException {
SoyTofuOptions options = new SoyTofuOptions();
options.setUseCaching(useCaching);
return compileToTofu(options);
}