diff options
author | Julien Lancelot <julien.lancelot@gmail.com> | 2013-01-25 15:02:24 +0100 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@gmail.com> | 2013-01-25 15:02:24 +0100 |
commit | 63665749910baeab18d9766270ee96862bb2c659 (patch) | |
tree | 62fa3bda5c782c30ef240e314c69e99eeef9f370 | |
parent | 14018dae903c939ef180e0c17c53d6f2c9606aab (diff) | |
download | sonarqube-63665749910baeab18d9766270ee96862bb2c659.tar.gz sonarqube-63665749910baeab18d9766270ee96862bb2c659.zip |
SONAR-2055 Remove useless code
-rw-r--r-- | sonar-core/src/main/java/org/sonar/core/graph/GraphSONWriter.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sonar-core/src/main/java/org/sonar/core/graph/GraphSONWriter.java b/sonar-core/src/main/java/org/sonar/core/graph/GraphSONWriter.java index 90155e1d686..6455a34e065 100644 --- a/sonar-core/src/main/java/org/sonar/core/graph/GraphSONWriter.java +++ b/sonar-core/src/main/java/org/sonar/core/graph/GraphSONWriter.java @@ -21,7 +21,6 @@ package org.sonar.core.graph; -import com.google.common.base.Charsets; import com.tinkerpop.blueprints.Edge; import com.tinkerpop.blueprints.Graph; import com.tinkerpop.blueprints.Vertex; @@ -124,7 +123,7 @@ public class GraphSONWriter { } root.put(GraphSONTokens.EDGES, edgesArray); - jsonOutputStream.write(root.toString().getBytes(Charsets.UTF_8)); + jsonOutputStream.write(root.toString().getBytes()); } } |