Details
Description
The static field PADDING allocates 262152 bytes for nothing.
private static final String[] PADDING = new String[Character.MAX_VALUE];
At least use lazy creation, better completely remove it (move to method) to save
memory (Having 20 apps on one tomcat --> 5MB allocated for nothing).