646566676869707172
RTL.set(this); } public PrintWriter openDevNull(){ this.out = new DevNullOutputStream(); this.writer = new PrintWriter(new OutputStreamWriter(this.out,UTF8)); return this.writer; }
72737475767778798081
} public void closeDevNull(){ } public void setContentLength(){ DevNullOutputStream devNull = (DevNullOutputStream)this.out; int contentLength = devNull.getCount(); if (0 < contentLength) this.setContentLength(contentLength); }