private synchronized Date deserializeToDate()

in gson/src/java/org/apache/fulcrum/json/gson/DateTypeAdapter.java [71:77]


  private synchronized Date deserializeToDate(String json) {
    try {
      return customDateFormat.parse(json);
    } catch (ParseException e) {
      throw new JsonSyntaxException(json, e);
    }
  }