Skip to content
Snippets Groups Projects
Commit ef5d0183 authored by Lukas Mauß's avatar Lukas Mauß
Browse files

Remove useless declarations

parent f42e9fd8
1 merge request!116Resolve "Refactor project structure"
Pipeline #20440 passed with stages
in 3 minutes and 39 seconds
import { Component, Inject, OnInit } from '@angular/core';
import { MAT_DIALOG_DATA, MatDialogRef } from '@angular/material';
import { Router } from '@angular/router';
import { NotificationService } from '../../../../services/util/notification.service';
import { ContentType } from '../../../../models/content-type.enum';
import { Content } from '../../../../models/content';
......@@ -15,9 +13,7 @@ export class ContentDeleteComponent implements OnInit {
format: ContentType;
content: Content;
constructor(private router: Router,
private notification: NotificationService,
public dialogRef: MatDialogRef<any>,
constructor(public dialogRef: MatDialogRef<any>,
@Inject(MAT_DIALOG_DATA) public data: any) {
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment