浏览代码

jfinal 3.5

James 7 年之前
父节点
当前提交
650a82ccd2
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/main/java/com/jfinal/template/io/WriterBuffer.java

+ 1 - 1
src/main/java/com/jfinal/template/io/WriterBuffer.java

@@ -22,7 +22,7 @@ package com.jfinal.template.io;
 public class WriterBuffer {
 public class WriterBuffer {
 	
 	
 	private static final int MIN_BUFFER_SIZE = 64;					// 缓冲区最小 64 字节
 	private static final int MIN_BUFFER_SIZE = 64;					// 缓冲区最小 64 字节
-	private static final int MAX_BUFFER_SIZE = 1024 * 1024 * 10;	// 缓冲区最大 10M 字节
+	private static final int MAX_BUFFER_SIZE = 1024 * 1024 * 10;		// 缓冲区最大 10M 字节
 	
 	
 	private int bufferSize = 2048;									// 缓冲区大小
 	private int bufferSize = 2048;									// 缓冲区大小