diff core/src/luan/modules/BasicLuan.java @ 443:bf5e62a9090c

remove toBoolean() and to_boolean()
author Franklin Schmidt <fschmidt@gmail.com>
date Mon, 04 May 2015 14:55:51 -0600
parents 75ccb4da803f
children e45bcaf6f5fe
line wrap: on
line diff
--- a/core/src/luan/modules/BasicLuan.java	Mon May 04 13:49:12 2015 -0600
+++ b/core/src/luan/modules/BasicLuan.java	Mon May 04 14:55:51 2015 -0600
@@ -111,10 +111,6 @@
 		return luan.toString(v);
 	}
 
-	public static boolean to_boolean(Object v) throws LuanException {
-		return Luan.toBoolean(v);
-	}
-
 	public static void error(LuanState luan,Object msg) throws LuanException {
 		throw luan.exception(msg);
 	}