ER-070 Avoid "static" collections; they can grow without bounds

Severity2
Enabledyes
Waivable
Violation
private static java.util.Collection adresses = new java.util.Vector();
Fix
private java.util.Collection adresses = new java.util.Vector();


Hammurapi 3 Copyright © 2004 Hammurapi Group. All Rights Reserved.