| Index: packages/intl/tool/generate_locale_data_files.dart
|
| diff --git a/packages/intl/tool/generate_locale_data_files.dart b/packages/intl/tool/generate_locale_data_files.dart
|
| index e6b49d788066c88382bd133980d183fdd7e62dca..2fde04b552f3132e18b235be15cd1f09211d66d2 100644
|
| --- a/packages/intl/tool/generate_locale_data_files.dart
|
| +++ b/packages/intl/tool/generate_locale_data_files.dart
|
| @@ -2,19 +2,17 @@
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| -/**
|
| - * A utility program to take locale data represented as a Dart map whose keys
|
| - * are locale names and write it into individual JSON files named by locale.
|
| - * This should be run any time the locale data changes.
|
| - *
|
| - * The files are written under "data/dates", in two subdirectories, "symbols"
|
| - * and "patterns". In "data/dates" it will also generate "locale_list.dart",
|
| - * which is sourced by the date_symbol_data... files.
|
| - */
|
| +/// A utility program to take locale data represented as a Dart map whose keys
|
| +/// are locale names and write it into individual JSON files named by locale.
|
| +/// This should be run any time the locale data changes.
|
| +///
|
| +/// The files are written under "data/dates", in two subdirectories, "symbols"
|
| +/// and "patterns". In "data/dates" it will also generate "locale_list.dart",
|
| +/// which is sourced by the date_symbol_data... files.
|
|
|
| -import '../lib/date_symbol_data_local.dart';
|
| -import '../lib/date_time_patterns.dart';
|
| -import '../lib/intl.dart';
|
| +import 'package:intl/date_symbol_data_local.dart';
|
| +import 'package:intl/date_time_patterns.dart';
|
| +import 'package:intl/intl.dart';
|
| import 'dart:convert';
|
| import 'dart:io';
|
| import '../test/data_directory.dart';
|
|
|