Cleanup code

This commit is contained in:
David Majdandžić
2023-04-05 17:25:27 +02:00
parent d032239105
commit 2628445422
9 changed files with 7 additions and 24 deletions

View File

@@ -1,5 +1,5 @@
import PduProcessor from "../PduProcessor";
export default abstract class Preprocessor extends PduProcessor {
readonly type: string = this.name;
readonly type: string = Preprocessor.name;
}