Skip to content

Commit

Permalink
refactor: Remove now obsolete isLoadingFile.service
Browse files Browse the repository at this point in the history
ref #2318
  • Loading branch information
shaman-apprentice committed Oct 16, 2022
1 parent 4e629e7 commit f83f309
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 102 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/)

### Chore 👨‍💻 👩‍💻

- Migrate codeMap.render.service, codeMap.label.service, codeMap.mouseEvent.service, codeMap.arrow.service, codeCharta.service, sharpnessMode.service, scaling.service and experimentalFeaturesEnabled.service to Angular [#3094](https://github.com/MaibornWolff/codecharta/pull/3094)
- Migrate codeMap.render.service, codeMap.label.service, codeMap.mouseEvent.service, codeMap.arrow.service, codeCharta.service, sharpnessMode.service, isLoadingFile.service, scaling.service and experimentalFeaturesEnabled.service to Angular [#3094](https://github.com/MaibornWolff/codecharta/pull/3094)

## [1.109.1] - 2022-10-12

Expand Down
2 changes: 0 additions & 2 deletions visualization/app/codeCharta/state/injector.service.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
//@ts-nocheck

import { FilesService } from "./store/files/files.service"
import { IsLoadingFileService } from "./store/appSettings/isLoadingFile/isLoadingFile.service"
import { MapSizeService } from "./store/treeMap/mapSize/mapSize.service"
import { MarkedPackagesService } from "./store/fileSettings/markedPackages/markedPackages.service"
import { EdgesService } from "./store/fileSettings/edges/edges.service"
import { BlacklistService } from "./store/fileSettings/blacklist/blacklist.service"
export class InjectorService {
constructor(
// We have to inject the services somewhere
private isLoadingFileService: IsLoadingFileService,
private filesService: FilesService,
private mapSizeService: MapSizeService,
private markedPackagesService: MarkedPackagesService,
Expand Down
2 changes: 0 additions & 2 deletions visualization/app/codeCharta/state/state.module.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import angular from "angular"
import { IsLoadingFileService } from "./store/appSettings/isLoadingFile/isLoadingFile.service"
import { FilesService } from "./store/files/files.service"
import { MapSizeService } from "./store/treeMap/mapSize/mapSize.service"
import { MarkedPackagesService } from "./store/fileSettings/markedPackages/markedPackages.service"
Expand All @@ -12,7 +11,6 @@ import camelCase from "lodash.camelcase"

angular
.module("app.codeCharta.state", ["app.codeCharta"])
.service(camelCase(IsLoadingFileService.name), IsLoadingFileService)
.service(camelCase(FilesService.name), FilesService)
.service(camelCase(MapSizeService.name), MapSizeService)
.service(camelCase(MarkedPackagesService.name), MarkedPackagesService)
Expand Down

This file was deleted.

This file was deleted.

0 comments on commit f83f309

Please sign in to comment.