plugins/org.symbian.tools.tmw.previewer/src/org/symbian/tools/tmw/previewer/http/WorkspaceResourcesServlet.java
changeset 483 109da596fa9d
parent 479 518afa7c6d2f
child 484 f5df819c1852
equal deleted inserted replaced
482:2973198ae2a9 483:109da596fa9d
   215             PreviewerPlugin.log(e);
   215             PreviewerPlugin.log(e);
   216         }
   216         }
   217         return null;
   217         return null;
   218     }
   218     }
   219 
   219 
   220     private final Providers providers = new Providers();
   220     private transient final Providers providers = new Providers();
   221 
   221 
   222     private void copyData(InputStream contents, OutputStream ouput) throws IOException {
   222     private void copyData(InputStream contents, OutputStream ouput) throws IOException {
   223         byte[] buf = new byte[4048];
   223         byte[] buf = new byte[4048];
   224         int i;
   224         int i;
   225         while ((i = contents.read(buf)) >= 0) {
   225         while ((i = contents.read(buf)) >= 0) {