Hi,
I should probably know things like this by now - but for some reason this one passed me by!
I have an object that I instantiate - it's quite nifty as it also extends a superclass and does some stuff in the contructor - in fact all the vital parameters and method calls are handled in the constructor.
After this I never call the object again to do something - I don't pass it to any other objects either - after it's instantiated it does it stuff and all is good. I am just worried that this is a kind of bad code smell?
What do you guys think?