Re: set-system-properties

2009-04-10 Thread Stuart Sierra
On Apr 9, 10:48 pm, Stuart Halloway wrote: > Yes to almost all of this (r662). I am not totally comfortable with   > the false/"false" conversion. Cool. I'm not crazy about false/"false" either, since it's not symmetric. -Stuart --~--~-~--~~~---~--~~ You received

Re: set-system-properties

2009-04-09 Thread Stuart Halloway
Yes to almost all of this (r662). I am not totally comfortable with the false/"false" conversion. Stu > Hi Stuart H! Comment on: > > (defn set-system-properties > [settings] > "Set some system properties. Nil clears a property." > (doseq [[name val]

set-system-properties

2009-04-08 Thread Stuart Sierra
Hi Stuart H! Comment on: (defn set-system-properties [settings] "Set some system properties. Nil clears a property." (doseq [[name val] settings] (if val (System/setProperty (as-str name) val) (System/clearProperty (as-str name) What if that were: (if