Browse Source

新增 getTemplateByString(String content, String cacheKey)

James 4 years ago
parent
commit
7f9fe044cc
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/main/java/com/jfinal/template/Engine.java

+ 1 - 1
src/main/java/com/jfinal/template/Engine.java

@@ -210,7 +210,7 @@ public class Engine {
 		}
 		return template;
 	}
-
+	
 	public Template getTemplateByString(String content, String cacheKey) {
 		if (cacheKey == null) {
 			return buildTemplateBySource(new StringSource(content, cacheKey));