]> source.dussan.org Git - sonarqube.git/commitdiff
Remove classes badly committed
authorSimon Brandhof <simon.brandhof@sonarsource.com>
Sun, 26 Jul 2015 21:02:35 +0000 (23:02 +0200)
committerSimon Brandhof <simon.brandhof@sonarsource.com>
Thu, 30 Jul 2015 09:38:11 +0000 (11:38 +0200)
sonar-core/src/main/java/org/sonar/core/util/ProtobufJsonFormat.java

index 3cce37e4fd9151ac8fec8641d9071042f2a3488d..e156c17f43260db435cc8a98c91f534cc2c99fca 100644 (file)
@@ -29,13 +29,13 @@ import org.sonar.api.utils.text.JsonWriter;
  * Converts a Protocol Buffers message to JSON. Unknown fields, binary fields, (deprecated) groups
  * and maps are not supported.
  */
-class ProtobufJsonFormat {
+public class ProtobufJsonFormat {
 
   private ProtobufJsonFormat() {
     // only statics
   }
 
-  static void write(Message message, JsonWriter writer) {
+  public static void write(Message message, JsonWriter writer) {
     writer.beginObject();
     writeMessage(message, writer);
     writer.endObject();