Closed
Bug 1202858
Opened 10 years ago
Closed 10 years ago
nsPipeInputStream should not implement nsISeekableStream
Categories
(Core :: XPCOM, defect)
Core
XPCOM
Tracking
()
RESOLVED
WONTFIX
People
(Reporter: bkelly, Assigned: bkelly)
Details
Lets see if we can remove nsISeekableStream from nsPipeInputStream. It implements the interface, but simply does this:
NS_IMETHODIMP
nsPipeInputStream::Seek(int32_t aWhence, int64_t aOffset)
{
NS_NOTREACHED("nsPipeInputStream::Seek");
return NS_ERROR_NOT_IMPLEMENTED;
}
| Assignee | ||
Comment 1•10 years ago
|
||
Actually, nsPipeInputStream does implement some of nsISeekableStream. It implements the Tell() method. So its not completely unused like I thought.
Status: ASSIGNED → RESOLVED
Closed: 10 years ago
Resolution: --- → WONTFIX
You need to log in
before you can comment on or make changes to this bug.
Description
•