Skip to content

Commit

Permalink
undo old branch changes
Browse files Browse the repository at this point in the history
  • Loading branch information
rupeshtiwari committed Oct 21, 2017
1 parent e0b05f4 commit 16c0842
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 14 deletions.
10 changes: 0 additions & 10 deletions modules/store-devtools/spec/config.spec.ts

This file was deleted.

1 change: 0 additions & 1 deletion modules/store-devtools/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import { InjectionToken, Type } from '@angular/core';
export class StoreDevtoolsConfig {
maxAge: number | false;
monitor: ActionReducer<any, any>;
name: string;
}

export const STORE_DEVTOOLS_CONFIG = new InjectionToken<StoreDevtoolsConfig>(
Expand Down
3 changes: 0 additions & 3 deletions modules/store-devtools/src/instrument.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,15 +64,12 @@ export function noMonitor(): null {
return null;
}

export const DEFAULT_NAME = 'store-devtool-instance';

export function createConfig(
_options: StoreDevtoolsOptions
): StoreDevtoolsConfig {
const DEFAULT_OPTIONS: StoreDevtoolsConfig = {
maxAge: false,
monitor: noMonitor,
name: DEFAULT_NAME,
};

let options = typeof _options === 'function' ? _options() : _options;
Expand Down

0 comments on commit 16c0842

Please sign in to comment.