plugins/org.symbian.tools.tmw.previewer/src/org/symbian/tools/tmw/previewer/http/WorkspaceResourcesServlet.java
changeset 484 f5df819c1852
parent 483 109da596fa9d
--- a/plugins/org.symbian.tools.tmw.previewer/src/org/symbian/tools/tmw/previewer/http/WorkspaceResourcesServlet.java	Thu Sep 02 10:50:38 2010 -0700
+++ b/plugins/org.symbian.tools.tmw.previewer/src/org/symbian/tools/tmw/previewer/http/WorkspaceResourcesServlet.java	Thu Sep 02 15:18:58 2010 -0700
@@ -217,10 +217,10 @@
         return null;
     }
 
-    private transient final Providers providers = new Providers();
+    private final transient Providers providers = new Providers();
 
     private void copyData(InputStream contents, OutputStream ouput) throws IOException {
-        byte[] buf = new byte[4048];
+        byte[] buf = new byte[4096];
         int i;
         while ((i = contents.read(buf)) >= 0) {
             ouput.write(buf, 0, i);