Closed Bug 1202858 Opened 9 years ago Closed 9 years ago

nsPipeInputStream should not implement nsISeekableStream

Categories

(Core :: XPCOM, defect)

defect
Not set
normal

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;
}
Actually, nsPipeInputStream does implement some of nsISeekableStream.  It implements the Tell() method.  So its not completely unused like I thought.
Status: ASSIGNED → RESOLVED
Closed: 9 years ago
Resolution: --- → WONTFIX
You need to log in before you can comment on or make changes to this bug.