Reputation: 610
I'm compiling my homemade plugin using Fiji and I'm getting strange results.
For example, if I compile a program x = 10;
it will run fine.
Say I change x=10;
to x=3;
(after i've compiled), every time I compile and run it alternates from x=10
to x=3
(back and forth each time). Does anyone know what could cause this?
I'm on windows, using fiji-win64 latest version.
Upvotes: 0
Views: 41
Reputation: 6992
This is a known bug: scijava/scripting-java#5.
When developing Java code for ImageJ, I would suggest using a full-featured IDE such as Eclipse. They are worth the effort to learn.
Upvotes: 1