Skip to content
This repository was archived by the owner on May 20, 2023. It is now read-only.

Commit a015665

Browse files
committed
format files
1 parent 1a62511 commit a015665

File tree

9 files changed

+13
-20
lines changed

9 files changed

+13
-20
lines changed

lib/src/components/material_expansionpanel/src/material_expansionpanel_auto_dismiss.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ import 'dart:html';
88
import 'package:angular2/angular2.dart';
99

1010
import '../material_expansionpanel.dart';
11-
import '../../../laminate/overlay/module.dart'
12-
show overlayContainerToken;
11+
import '../../../laminate/overlay/module.dart' show overlayContainerToken;
1312

1413
/// A directive that automatically collapses [MaterialExpansionPanel].
1514
///

lib/src/components/material_input/material_percent_directive.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ import './material_input_error_keys.dart';
77
import 'package:angular2/angular2.dart';
88
import 'package:intl/intl.dart';
99

10-
export './material_number_accessor.dart'
11-
show materialNumberInputDirectives;
10+
export './material_number_accessor.dart' show materialNumberInputDirectives;
1211

1312
/// Directive to control `material-input` to accept percentage values.
1413
///

lib/src/laminate/components/popup/src/popup_source_directive.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ import 'dart:math';
1010
import 'package:angular2/angular2.dart';
1111

1212
import '../../../enums/alignment.dart';
13-
import '../../../popup/popup.dart'
14-
show DomPopupSourceFactory, PopupSource;
13+
import '../../../popup/popup.dart' show DomPopupSourceFactory, PopupSource;
1514
import '../../../../utils/async/async.dart';
1615

1716
/// A directive that exposes the [PopupSource] interface as `popupSource`:

lib/src/laminate/overlay/overlay.dart

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@
44

55
library angular_components.laminate.overlay.overlay;
66

7-
export 'src/overlay_ref.dart'
8-
show BaseOverlayRef, OverlayRef;
9-
export 'src/overlay_service.dart'
10-
show OverlayService;
11-
export 'src/overlay_state.dart'
12-
show OverlayState, MutableOverlayState;
7+
export 'src/overlay_ref.dart' show BaseOverlayRef, OverlayRef;
8+
export 'src/overlay_service.dart' show OverlayService;
9+
export 'src/overlay_state.dart' show OverlayState, MutableOverlayState;

lib/src/model/selection/src/multi_selection_model_impl.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ class _MultiSelectionModelImpl<T> extends Observable
1515
Iterable<T> initialSelection, KeyProvider<T> keyProvider)
1616
: selectedValues = new LinkedHashSet<T>(
1717
equals: (a, b) => keyProvider(a) == keyProvider(b),
18-
hashCode: (o) => keyProvider(o).hashCode)..addAll(initialSelection);
18+
hashCode: (o) => keyProvider(o).hashCode)
19+
..addAll(initialSelection);
1920

2021
@override
2122
void clear() {

lib/src/model/ui/highlighted_text_model.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ class HighlightedTextSegment {
3434
String toString() => isHighlighted ? "*$text*" : text;
3535
}
3636

37-
final Logger _logger = new Logger('angular_components.module.ui.highlighted_text_model');
37+
final Logger _logger =
38+
new Logger('angular_components.module.ui.highlighted_text_model');
3839

3940
/// A class to highlight the occurrences of a list of tokens within a string.
4041
/// By default, matches are only highlighted at the start of words,

lib/src/utils/angular/managed_zone/interface.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,4 @@
44

55
library angular_components.utils.angular.managed_zone.interface;
66

7-
export 'src/managed_zone.dart'
8-
show ManagedZone, ManagedZoneBase;
7+
export 'src/managed_zone.dart' show ManagedZone, ManagedZoneBase;

lib/src/utils/async/src/debounce_stream.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ library angular_components.utils.async.src.debounce_stream;
66

77
import 'dart:async';
88

9-
import '../../rate_limit_utils/rate_limit_utils.dart'
10-
show debounce;
9+
import '../../rate_limit_utils/rate_limit_utils.dart' show debounce;
1110

1211
import 'rate_limit.dart';
1312

lib/src/utils/async/src/rate_limit.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ library angular_components.utils.async.src.rate_limit;
66

77
import 'dart:async';
88

9-
import '../../rate_limit_utils/rate_limit_utils.dart'
10-
show RateLimitStrategy;
9+
import '../../rate_limit_utils/rate_limit_utils.dart' show RateLimitStrategy;
1110

1211
typedef void _AddEventFn(event);
1312

0 commit comments

Comments
 (0)