refactor(runtime): remove unused internal wrappers

This commit is contained in:
Vincent Koc
2026-06-17 19:57:40 +08:00
parent 8b8b13417e
commit 4e2351dd4d
8 changed files with 0 additions and 84 deletions

View File

@@ -6,7 +6,6 @@ import fs from "node:fs/promises";
import path from "node:path";
import { type FileLockOptions, withFileLock } from "../plugin-sdk/file-lock.js";
import {
clearStoreWriterQueuesForTest,
runQueuedStoreWrite,
type StoreWriterQueue,
} from "../shared/store-writer-queue.js";
@@ -45,7 +44,3 @@ export async function runExclusiveCommitmentsStoreWrite<T>(
},
});
}
export function clearCommitmentsStoreWriterQueuesForTest(): void {
clearStoreWriterQueuesForTest(WRITER_QUEUES, "commitments store writer queue cleared for test");
}