protected void readExternal()

in usage-statistics-impl/src/jetbrains/buildServer/usageStatistics/impl/UsageStatisticsCommonDataPersistor.java [60:68]


  protected void readExternal(@NotNull final Element element) {
    final String lastReportingDate = element.getAttributeValue(LAST_REPORTING_DATE);
    if (lastReportingDate != null) {
      try {
        myLastReportingDate = new Date(Long.parseLong(lastReportingDate));
      } catch (final NumberFormatException ignore) {}
    }
    myReportingSuggestionWasConsidered = Boolean.parseBoolean(element.getAttributeValue(REPORTING_SUGGESTION_WAS_CONSIDERED));
  }