File tree 1 file changed +0
-18
lines changed
1 file changed +0
-18
lines changed Original file line number Diff line number Diff line change 1668
1668
throw new Error ( msg ) ;
1669
1669
}
1670
1670
1671
- /** Called once when service is started. */
1672
- start ( ) {
1673
- this . #notImplemented( 'start' ) ;
1674
- }
1675
-
1676
1671
/** Called each time service is activated. */
1677
1672
activate ( ) {
1678
1673
this . #notImplemented( 'activate' ) ;
1688
1683
/** Toy service for experimenting. */
1689
1684
class DummyService extends Service {
1690
1685
1691
- /** @inheritdoc */
1692
- start ( ) {
1693
- this . logger . log ( 'Dummy start' ) ;
1694
- }
1695
-
1696
1686
/** @inheritdoc */
1697
1687
activate ( ) {
1698
1688
this . logger . log ( 'Dummy activate' ) ;
1719
1709
this . #scroller = scroller ;
1720
1710
}
1721
1711
1722
- /** @inheritdoc */
1723
- start ( ) {
1724
- this . logger . log ( 'Scroller start, no-op' ) ;
1725
- }
1726
-
1727
1712
/** @inheritdoc */
1728
1713
activate ( ) {
1729
1714
this . #scroller. activate ( ) ;
1839
1824
for ( const shortcut of this . allShortcuts ) {
1840
1825
this . #addKey( shortcut ) ;
1841
1826
}
1842
- for ( const service of this . #services) {
1843
- service . start ( ) ;
1844
- }
1845
1827
}
1846
1828
1847
1829
/** @type {Shortcut[] } - List of {@link Shortcut}s to register. */
You can’t perform that action at this time.
0 commit comments