Mercurial Hosting > luan
changeset 414:d2ab2240cc65
minor
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Wed, 29 Apr 2015 19:06:18 -0600 |
parents | 8937263f59f6 |
children | ce8e19567911 |
files | core/src/luan/LuanTable.java |
diffstat | 1 files changed, 4 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/core/src/luan/LuanTable.java Wed Apr 29 19:01:18 2015 -0600 +++ b/core/src/luan/LuanTable.java Wed Apr 29 19:06:18 2015 -0600 @@ -112,9 +112,6 @@ return rtn; } */ - protected String type() { - return "table"; - } public Object get(Object key) { if( list != null ) { @@ -385,4 +382,8 @@ } } + @Override public final String toString() { + return "table:" + Integer.toHexString(hashCode()); + } + }