> As an aside, I would like to note that after a couple of years away I still
see the same contributers in this list, and it is excellent to find that
support and commitment.
It's not our time yet to retire and hand over the kingdom to the little
princes (single 's') out there, as they still need
Am 07.11.2012 18:33 schrieb "bsquared" :
> As an aside, I would like to note that after a couple of years away I
still see the same contributers in this list, and it is excellent to find
that support and commitment.
After all we have to keep the Pascal community living (or spoken in a
recent conte
On 11/06/2012 07:44 PM, leledumbo wrote:
What is the best way to port 'private static final' member?
private class var (assuming you want to declare a variable).
private static final Set = STATIC_SET;
static {
STATIC_SET = new HashSet;
STATIC_SET.Add("A Value");
...
}
Static
> What is the best way to port 'private static final' member?
private class var (assuming you want to declare a variable).
> private static final Set = STATIC_SET;
static {
STATIC_SET = new HashSet;
STATIC_SET.Add("A Value");
...
}
Static initialization block has no equivalent i