Browse Source

jfinal 3.6 release ^_^

James 7 years ago
parent
commit
6e88f804a8
2 changed files with 2 additions and 1 deletions
  1. 1 0
      pom.xml
  2. 1 1
      src/main/java/com/jfinal/config/Routes.java

+ 1 - 0
pom.xml

@@ -266,3 +266,4 @@
 		</plugins>
 	</build>
 </project>
+

+ 1 - 1
src/main/java/com/jfinal/config/Routes.java

@@ -34,7 +34,7 @@ public abstract class Routes {
 	private static Set<String> controllerKeySet = new HashSet<String>();
 	
 	static final boolean DEFAULT_MAPPING_SUPER_CLASS = false;	// 是否映射超类中的方法为路由的默认值
-	Boolean mappingSuperClass = null;	// 是否映射超类中的方法为路由
+	Boolean mappingSuperClass = null;							// 是否映射超类中的方法为路由
 	
 	private String baseViewPath = null;
 	private List<Route> routeItemList = new ArrayList<Route>();