Justin Johnson wrote:
> Will someone please explain to me why this isn't working? Is there
> something special about newInstance that I'm missing?
>
> user=> (. org.tmatesoft.svn.core.wc.SVNClientManager newInstance)
> #
>From the Javadoc, newInstance is a static method on SVNClientManager,
so
Ah, static methods... Clearly I haven't spent enough time in the Java
world.
user=> (org.tmatesoft.svn.core.wc.SVNClientManager/newInstance)
#
On Mon, Jan 5, 2009 at 8:41 AM, Justin Johnson wrote:
> Will someone please explain to me why this isn't working? Is there
> something special about ne