Updated SmartConfig, added keySet() method.

This commit is contained in:
Jonathan Bernard 2011-01-21 13:41:29 -06:00
parent df8fcac2d2
commit b19d1cbe80
2 changed files with 5 additions and 3 deletions

View File

@ -1,6 +1,6 @@
#Fri, 21 Jan 2011 13:00:05 -0600 #Fri, 21 Jan 2011 13:40:32 -0600
name=jdb-util name=jdb-util
version=1.0 version=1.1
lib.local=true lib.local=true
build.number=4 build.number=8

View File

@ -59,4 +59,6 @@ public class SmartConfig {
props."$name" = value.toString() props."$name" = value.toString()
save() save()
} }
Set<String> keySet() { return this.@props.keySet() }
} }