Has anybody looked at getting the RoadMatcher and the JCS working in
the openjump codebase? I've seen occasional mention of it, but so far
it doesan't appear to be of much concern to anybody. How much interest
would there be in somebody (ie. me, if nobody else is able) doing
this?
-Craig
-
Normally, the head is the unstable code, and any changes which have
been tested get merged to the stable branch...
-Craig
On 6/4/07, Sunburned Surveyor <[EMAIL PROTECTED]> wrote:
> Stephan,
>
> You wrote: "I am more than happy to watch the process of getting a development
> trunk in OpenJUMP devel
Good point, however if you close the task (project) all memory is
reclaimed, so it would seem to be possible to reclaim it by removing a
layer.
Larry
On 5/21/07, A. Craig West <[EMAIL PROTECTED]> wrote:
>
> Do we know if this is a problem with references being hung onto
> in
Do we know if this is a problem with references being hung onto
internally, or just the standard Java VM behavior where the Java VM
normally doesn't return memory to the OS?
-Craig
On 5/21/07, Stefan Steiniger <[EMAIL PROTECTED]> wrote:
> hei David,
>
> in case you don't know
> what sometimes can
On 5/16/07, Sunburned Surveyor <[EMAIL PROTECTED]> wrote:
> Here is my attempt at defining the HashMap using Java Generics:
>
> private HashMap
> rendererFactoryTools = new HashMap IRendererFactoryTool>();
The correct declaration should probably be:
private HashMap renderFactoryTools = new
HashMap
Your cast should be fine, although of course you will get a null
pointer exception if you ever try to actually dereference casted...
-Craig
On 5/16/07, Sunburned Surveyor <[EMAIL PROTECTED]> wrote:
> Are you allowed to cast an object with a value of null, or does this
> throw an exception?
>
> For
I use CVS for work, which is enough to make me a big subversion fan
:-) Atomic commits are the big thing I like, but I'm also a big of
sym-link support. That one isn't a big issue with this code base, I
imagine, but I like it anyways...
-Craig
-
ection and see if that fixes the problem.
>
> Thanks very much for the help Craig. Sometimes the second pair of eyes
> catches something very obvious.
>
> The Sunburned Surveyor
>
>
> On 5/4/07, A. Craig West <[EMAIL PROTECTED]> wrote:
> >
> > I think
I think it's just a typo, you have an extra semicolon at the end of the if...
-Craig
On 5/4/07, Sunburned Surveyor <[EMAIL PROTECTED]> wrote:
> Hey guys. I need some help with the use of the instanceof operator. This one
> really has me stumped. :]
>
> In one of my unit tests I have the following