-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Print null instead of string #91
Comments
Hmm.. interestingly this only seems to cause problems when printing the strings and not the integers. If I change
I get output which looks like:
|
Probably a GC problem. |
I agree with @supercooldave that the GC is the most likely cause. |
This bug may be related to #48 It the blank lines appears at regular intervals and the problem only occurs when I had a similar problem with the same characteristics and that was due to the GC so I would not be surprised if this bug is related to the GC. |
As far as I can tell, this seems to be fixed now. My guess is the updated GC from 2ba9fb1 solved the problem. I'm closing this. |
In the program below, the main class creates many passive objects, of type Image,
which are initialized always with the same name "blah".
Each object of type Image is sent to a new active object of type Processing, which prints
the name of the image.
When I execute this program, the output is something like:
blah
blah
blah
...
blah
(null)
blah
blah
blah
...
nulls and empty lines are being printed and it shouldn't happen.
Thanks.
The text was updated successfully, but these errors were encountered: