diff src/luan/modules/BasicLuan.java @ 1257:e38f5869e9df

don't reset in send_redirect and other improvements
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 20 Sep 2018 21:04:41 -0600
parents bae51e2d34c9
children 9fa8b8389578
line wrap: on
line diff
--- a/src/luan/modules/BasicLuan.java	Wed Sep 19 20:15:16 2018 -0600
+++ b/src/luan/modules/BasicLuan.java	Thu Sep 20 21:04:41 2018 -0600
@@ -115,19 +115,19 @@
 		return tbl;
 	}
 
-	public static int assert_integer(int v) throws LuanException {
+	public static int assert_integer(int v) {
 		return v;
 	}
 
-	public static long assert_long(long v) throws LuanException {
+	public static long assert_long(long v) {
 		return v;
 	}
 
-	public static double assert_double(double v) throws LuanException {
+	public static double assert_double(double v) {
 		return v;
 	}
 
-	public static float assert_float(float v) throws LuanException {
+	public static float assert_float(float v) {
 		return v;
 	}