Browse Source

改注释

James 3 years ago
parent
commit
02366f0afd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/main/java/com/jfinal/render/ErrorRender.java

+ 1 - 1
src/main/java/com/jfinal/render/ErrorRender.java

@@ -116,7 +116,7 @@ public class ErrorRender extends Render {
 		boolean isJsonContentType = ct != null && ct.indexOf("json") != -1;
 		
 		// 支持 me.setErrorView(xxx.html) 配置
-		// 注意:针对 json 的 setErrorJsonContent(...) 直接覆盖掉了默认值,走后面的 response.getOutputStream().write(...) 即何
+		// 注意:针对 json 的 setErrorJsonContent(...) 直接覆盖掉了默认值,走后面的 response.getOutputStream().write(...)
 		if (viewOrJson == null) {
 		    if (! isJsonContentType) {
 		        viewOrJson = getErrorView(getErrorCode());