remove injectable decorator from non-services (#3641)

This commit is contained in:
Denys Vuika
2018-08-02 20:08:07 +01:00
committed by Eugenio Romano
parent 05da97d3b9
commit 6929f1f678
3 changed files with 0 additions and 6 deletions

View File

@@ -15,11 +15,9 @@
* limitations under the License.
*/
import { Injectable } from '@angular/core';
import { ContentMetadataConfig, OrganisedPropertyGroup, PropertyGroupContainer } from '../../interfaces/content-metadata.interfaces';
import { getGroup, getProperty } from './property-group-reader';
@Injectable()
export class AspectOrientedConfigService implements ContentMetadataConfig {
constructor(private config: any) {}

View File

@@ -15,12 +15,10 @@
* limitations under the License.
*/
import { Injectable } from '@angular/core';
import { ContentMetadataConfig, OrganisedPropertyGroup,
PropertyGroupContainer
} from '../../interfaces/content-metadata.interfaces';
@Injectable()
export class IndifferentConfigService implements ContentMetadataConfig {
constructor(config: any) {}

View File

@@ -15,7 +15,6 @@
* limitations under the License.
*/
import { Injectable } from '@angular/core';
import {
ContentMetadataConfig,
LayoutOrientedConfigItem,
@@ -24,7 +23,6 @@ import {
} from '../../interfaces/content-metadata.interfaces';
import { getProperty } from './property-group-reader';
@Injectable()
export class LayoutOrientedConfigService implements ContentMetadataConfig {
constructor(private config: any) {}