浏览代码

jfinal 3.6

James 7 年之前
父节点
当前提交
ff3be66e7d
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/main/java/com/jfinal/template/stat/ast/Switch.java

+ 1 - 1
src/main/java/com/jfinal/template/stat/ast/Switch.java

@@ -75,7 +75,7 @@ public class Switch extends Stat implements CaseSetter {
 	
 	
 	public void setDefault(Default _default, Location location) {
 	public void setDefault(Default _default, Location location) {
 		if (this._default != null) {
 		if (this._default != null) {
-			throw new ParseException("The #default case of #switch directive is already defined", location);
+			throw new ParseException("The #default case of #switch is already defined", location);
 		}
 		}
 		this._default = _default;
 		this._default = _default;
 	}
 	}