chore: 메모리 문서 업데이트 및 사용하지 않는 변수 정리

- memory/MEMORY.md: 현재 상태 업데이트 (커밋 4c7bd42b 반영)
- memory/maplibre-migration-status.md: 최종 커밋 정보 추가
- 사용하지 않는 catch 변수 제거 (4개 파일)
- ESLint 경고: 35개 → 31개

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
htlee 2026-02-15 17:34:23 +09:00
부모 4c7bd42b42
커밋 7b13977b50
3개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제

파일 보기

@ -104,7 +104,7 @@ const VesselListPanel = ({
if (vesselId && sourceState && sourceState !== state) {
onDrop?.(vesselId, sourceState, state);
}
} catch (error) {
} catch {
// 드롭 데이터 파싱 실패 시 무시 (외부 드래그 소스일 수 있음)
}
},

파일 보기

@ -289,7 +289,7 @@ class ReplayWebSocketService {
private _clearSubscriptions(): void {
this.subscriptions.forEach((sub) => {
try { sub.unsubscribe(); } catch (e) { /* ignore */ }
try { sub.unsubscribe(); } catch { /* ignore */ }
});
this.subscriptions = [];
}
@ -569,7 +569,7 @@ class ReplayWebSocketService {
this._clearSubscriptions();
if (this.client?.connected) {
try { this.client.deactivate(); } catch (e) { /* ignore */ }
try { this.client.deactivate(); } catch { /* ignore */ }
}
this.client = null;

파일 보기

@ -167,7 +167,7 @@ workerSelf.onmessage = (e: MessageEvent<string[]>): void => {
const row = rawMessages[i].split('|');
const ship = rowToShipObject(row);
ships.push(ship);
} catch (_err) {
} catch {
// 파싱 에러는 무시하고 계속 진행
}
}