change method

This commit is contained in:
Looly
2021-01-24 21:02:20 +08:00
parent b6003aea30
commit 6ffa827365
3 changed files with 22 additions and 2 deletions

View File

@@ -68,8 +68,20 @@ public class VelocityEngine implements TemplateEngine {
*
* @return 原始引擎对象
* @since 4.3.0
* @deprecated 拼写错误了,请使用{@link #getRawEngine()}
*/
@Deprecated
public org.apache.velocity.app.VelocityEngine getRowEngine() {
return getRawEngine();
}
/**
* 获取原始的引擎对象
*
* @return 原始引擎对象
* @since 5.5.8
*/
public org.apache.velocity.app.VelocityEngine getRawEngine() {
return this.engine;
}