Browse Source

jfinal 3.6

James 7 years ago
parent
commit
ff3be66e7d
1 changed files with 1 additions and 1 deletions
  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) {
 		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;
 	}