From 5d6cb478cd6b1feafcfe6b353ee5afc5cc669028 Mon Sep 17 00:00:00 2001
From: Dennis Postma <dennis@directonline.io>
Date: Thu, 26 Dec 2024 23:54:19 +0100
Subject: [PATCH] Removed redundant code pt2.

---
 src/middleware/authentication.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/middleware/authentication.ts b/src/middleware/authentication.ts
index f7ed4e5..4660bf7 100644
--- a/src/middleware/authentication.ts
+++ b/src/middleware/authentication.ts
@@ -3,7 +3,7 @@ import { TSocket } from '#application/types'
 import config from '#application/config'
 import { gameLogger } from '#application/logger'
 
-export class SocketAuthenticator {
+class SocketAuthenticator {
   private socket: TSocket
   private readonly next: any