Hi, looking over the source of jakarta projects I noticed the usage of a coding style, which i never saw before:
/**
* Return the descriptive short name of this Manager implementation.
*/
public String getName() {
return (nameBug);
}
could you explain me what the parenthisis (nameBug) are for?
Is there a code style guide somewhere you are following? Just out of
interest I'd like to see that.
