Apply missing changes from master

This commit is contained in:
Trustin Lee 2012-05-31 11:50:31 -07:00
parent 689093408e
commit fae19efd73
2 changed files with 3 additions and 3 deletions

View File

@ -28,7 +28,7 @@ import org.jboss.netty.buffer.ChannelBuffer;
public class MixedAttribute implements Attribute { public class MixedAttribute implements Attribute {
private Attribute attribute; private Attribute attribute;
private long limitSize; private final long limitSize;
public MixedAttribute(String name, long limitSize) { public MixedAttribute(String name, long limitSize) {
this.limitSize = limitSize; this.limitSize = limitSize;

View File

@ -28,9 +28,9 @@ import org.jboss.netty.buffer.ChannelBuffer;
public class MixedFileUpload implements FileUpload { public class MixedFileUpload implements FileUpload {
private FileUpload fileUpload; private FileUpload fileUpload;
private long limitSize; private final long limitSize;
private long definedSize; private final long definedSize;
public MixedFileUpload(String name, String filename, String contentType, public MixedFileUpload(String name, String filename, String contentType,
String contentTransferEncoding, Charset charset, long size, String contentTransferEncoding, Charset charset, long size,