Skip to content

Commit 5d17caa

Browse files
committed
remove unused method
1 parent 25d54b1 commit 5d17caa

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

packages/stax-xml/src/StaxXmlParser.ts

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -303,20 +303,6 @@ export class StaxXmlParser implements AsyncIterator<AnyXmlEvent> {
303303
this.queueTail = this.queueSize;
304304
}
305305

306-
/**
307-
* Check if queue is empty - O(1) operation
308-
*/
309-
private _isQueueEmpty(): boolean {
310-
return this.queueSize === 0;
311-
}
312-
313-
/**
314-
* Get current queue size - O(1) operation
315-
*/
316-
private _getQueueSize(): number {
317-
return this.queueSize;
318-
}
319-
320306
// ===== ASCII table utility methods =====
321307

322308
/**

0 commit comments

Comments
 (0)