SEC-8: Replaced Integer.valueOf(int) calls with new Intgeger(int) for JDK 1.4 compatibility.

This commit is contained in:
Luke Taylor 2007-09-24 14:36:50 +00:00
parent f0bc3f0cd2
commit c150e25c15
1 changed files with 4 additions and 4 deletions

View File

@ -85,10 +85,10 @@ public class NtlmProcessingFilter extends HttpFilter implements InitializingBean
private static final String STATE_ATTR = "AcegiNtlm";
private static final String CHALLENGE_ATTR = "NtlmChal";
private static final Integer BEGIN = Integer.valueOf(0);
private static final Integer NEGOTIATE = Integer.valueOf(1);
private static final Integer COMPLETE = Integer.valueOf(2);
private static final Integer DELAYED = Integer.valueOf(3);
private static final Integer BEGIN = new Integer(0);
private static final Integer NEGOTIATE = new Integer(1);
private static final Integer COMPLETE = new Integer(2);
private static final Integer DELAYED = new Integer(3);
//~ Instance fields ================================================================================================