Browse Source

jfinal 5.0.7 release ^_^

James 3 years ago
parent
commit
18e30413ad
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/main/java/com/jfinal/plugin/redis/Cache.java

+ 1 - 1
src/main/java/com/jfinal/plugin/redis/Cache.java

@@ -201,7 +201,7 @@ public class Cache {
 	 */
 	public String mset(Object... keysValues) {
 		if (keysValues.length % 2 != 0)
-			throw new IllegalArgumentException("wrong number of arguments for met, keysValues length can not be odd");
+			throw new IllegalArgumentException("wrong number of arguments for mset, keysValues length can not be odd");
 		Jedis jedis = getJedis();
 		try {
 			byte[][] kv = new byte[keysValues.length][];