Skip to content

Commit

Permalink
Remove unused identifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
backspace committed Feb 10, 2025
1 parent 27dc76e commit 84f02e3
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions packages/runtime-common/realm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ import {
fileContentToText,
readFileAsText,
getFileWithFallbacks,
writeToStream,
waitForClose,
type TextFileRef,
} from './stream';
Expand Down Expand Up @@ -2147,14 +2146,6 @@ export interface CardDefinitionResource {
};
}

function sseToChunkData(type: string, data: string, id?: string): string {
let info = [`event: ${type}`, `data: ${data}`];
if (id) {
info.push(`id: ${id}`);
}
return info.join('\n') + '\n\n';
}

function assertRealmPermissions(
realmPermissions: any,
): asserts realmPermissions is RealmPermissions {
Expand Down

0 comments on commit 84f02e3

Please sign in to comment.