Effective java says:
// Potential security hole! static public final Thing[] VALUES = { ... };
// Potential security hole!
static public final Thing[] VALUES = { ... };
Can somebody tell me what is t
In this declaration, a client can modify Thing[0], Thing[1], etc (i.e. elements in the array).