]> source.dussan.org Git - sonarqube.git/commitdiff
Remove unused method
authorGodin <mandrikov@gmail.com>
Tue, 21 Dec 2010 18:27:35 +0000 (18:27 +0000)
committerGodin <mandrikov@gmail.com>
Tue, 21 Dec 2010 18:27:35 +0000 (18:27 +0000)
sonar-gwt-api/src/main/java/org/sonar/wsclient/gwt/unmarshallers/TimeMachineUnmarshaller.java
sonar-ws-client/src/main/java/org/sonar/wsclient/unmarshallers/JsonUtils.java
sonar-ws-client/src/main/java/org/sonar/wsclient/unmarshallers/TimeMachineUnmarshaller.java
sonar-ws-client/src/test/java/org/sonar/wsclient/unmarshallers/TimeMachineUnmarshallerTest.java

index adc79ccc5825d49c0fe9678e01be8de4add54c7b..562e986c70e55c2afd8e7b066441a05f3c9f1dda 100644 (file)
@@ -31,6 +31,7 @@ public class TimeMachineUnmarshaller extends AbstractUnmarshaller<TimeMachine> {
     for (int i = 0; i < size; i++) {
       JSONObject cellJson = JsonUtils.getArray(cells, i);
       JSONArray valuesJson = cellJson.get("v").isArray();
+
       Object[] resultValues = new Object[JsonUtils.getArraySize(valuesJson)];
       for (int indexValue = 0; indexValue < JsonUtils.getArraySize(valuesJson); indexValue++) {
         Object value = valuesJson.get(indexValue);
index bdf87e27ac029461163c6dc9a0e3ed87d053e779..8a7092741a70e3be4ccee0a408a2a70810791f7b 100644 (file)
@@ -103,15 +103,4 @@ public final class JsonUtils {
     return null;
   }
 
-  /**
-   * @since 2.5
-   */
-  public static Date parseDateTime(String dateTime) {
-    try {
-      SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssZ");
-      return dateFormat.parse(dateTime);
-    } catch (ParseException e) {
-      throw new RuntimeException(e);
-    }
-  }
 }
index 72203450dfc32729e182758845a21209c727a758..b59a364bc31a1a31e1cddf53b8e20b774b067c67 100644 (file)
@@ -37,8 +37,8 @@ public class TimeMachineUnmarshaller extends AbstractUnmarshaller<TimeMachine> {
     int size = cols.size();
     TimeMachineColumn[] result = new TimeMachineColumn[size];
     for (int index = 0; index < size; index++) {
-      JSONObject colJson = (JSONObject)cols.get(index);
-      result[index]=new TimeMachineColumn(index, JsonUtils.getString(colJson, "metric"), null, null);
+      JSONObject colJson = (JSONObject) cols.get(index);
+      result[index] = new TimeMachineColumn(index, JsonUtils.getString(colJson, "metric"), null, null);
     }
     return result;
   }
@@ -47,15 +47,15 @@ public class TimeMachineUnmarshaller extends AbstractUnmarshaller<TimeMachine> {
     int size = cells.size();
     TimeMachineCell[] result = new TimeMachineCell[size];
     for (int i = 0; i < size; i++) {
-      JSONObject cellJson = (JSONObject)cells.get(i);
+      JSONObject cellJson = (JSONObject) cells.get(i);
       JSONArray valuesJson = JsonUtils.getArray(cellJson, "v");
 
       Object[] resultValues = new Object[valuesJson.size()];
       for (int indexValue = 0; indexValue < valuesJson.size(); indexValue++) {
         Object value = valuesJson.get(indexValue);
-        resultValues[indexValue]=value;
+        resultValues[indexValue] = value;
       }
-      result[i]=new TimeMachineCell(JsonUtils.getDateTime(cellJson, "d"), resultValues);
+      result[i] = new TimeMachineCell(JsonUtils.getDateTime(cellJson, "d"), resultValues);
     }
     return result;
   }
index 774dd1bfd81e64431af4bd96f2bcdedacc2810ba..731d58e24f74655e1dd70a87ce3fe3fdd6077081 100644 (file)
@@ -67,8 +67,7 @@ public class TimeMachineUnmarshallerTest {
     TimeMachine timeMachine = new TimeMachineUnmarshaller().toModel(WSTestUtils.loadFile("/timemachine/typed-values.json"));
 
     assertThat(timeMachine.getCells()[0].getValues().length, is(2));
-    assertThat((String)timeMachine.getCells()[0].getValues()[0], is("Sonar way"));
+    assertThat((String) timeMachine.getCells()[0].getValues()[0], is("Sonar way"));
     assertThat((Double) timeMachine.getCells()[0].getValues()[1], is(80.0));
-
   }
 }