Code polish

This commit is contained in:
David Majdandžić
2023-04-06 21:03:59 +02:00
parent 12896b2a5b
commit e913934ed9
5 changed files with 27 additions and 26 deletions

View File

@@ -1,7 +1,7 @@
import {PDU} from "./CommonObjects";
export default class MessageIdManager {
private static messages: {[key: string]: number} = {};
private static messages: { [key: string]: number } = {};
static addMessageId(message: PDU, id: number): void {
this.messages[this.getMessageHash(message)] = id;