mirror of
https://gitlab.dit.htwk-leipzig.de/htwk-software/htwkalender.git
synced 2025-08-03 18:29:14 +02:00
formated and linted
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import { Event } from './event';
|
||||
import { Event } from "./event";
|
||||
|
||||
export class Module {
|
||||
constructor(
|
||||
@@ -10,12 +10,7 @@ export class Module {
|
||||
public events: Event[] = [],
|
||||
) {}
|
||||
|
||||
isEqual(module: Module): Boolean{
|
||||
return (
|
||||
this.name === module.name &&
|
||||
this.course === module.course
|
||||
);
|
||||
isEqual(module: Module): Boolean {
|
||||
return this.name === module.name && this.course === module.course;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user