Enable PMD rule UnnecessaryFullyQualifiedName and fix violations
This commit is contained in:
parent
b1a88b01ab
commit
b68f1587b2
3 changed files with 2 additions and 3 deletions
|
|
@ -226,7 +226,7 @@ public class RouteServer extends Thread implements Comparable<RouteServer> {
|
|||
if (track != null) {
|
||||
if (headers != null) // compressed
|
||||
{
|
||||
java.io.ByteArrayOutputStream baos = new ByteArrayOutputStream();
|
||||
ByteArrayOutputStream baos = new ByteArrayOutputStream();
|
||||
Writer w = new OutputStreamWriter(new GZIPOutputStream(baos), "UTF-8");
|
||||
w.write(handler.formatTrack(track));
|
||||
w.close();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue