?
-
I have a 'helper' method that is called by some methods.
I want to make this method available to the subclasses too and this is
what i have:
protected String concat(String[] text, char delimiter) {
...
}
The problem with this, from my point of view, is that this method will
appear in the generated java documentation.
What is the preferred way to do it to hide it or should it even be
hidden in the first place?
I want to make this method available to the subclasses too and this is
what i have:
protected String concat(String[] text, char delimiter) {
...
}
The problem with this, from my point of view, is that this method will
appear in the generated java documentation.
What is the preferred way to do it to hide it or should it even be
hidden in the first place?