~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/smart/request.py

Remove unused no_body_received method on SmartServerRequestHandler.

Show diffs side-by-side

added added

removed removed

Lines of Context:
307
307
                raise
308
308
 
309
309
    def headers_received(self, headers):
310
 
        # XXX
 
310
        # Just a no-op at the moment.
311
311
        pass
312
312
 
313
313
    def args_received(self, args):
320
320
        self._command = command(self._backing_transport)
321
321
        self._run_handler_code(self._command.execute, args, {})
322
322
 
323
 
    def no_body_received(self):
324
 
        # XXX
325
 
        pass
326
 
 
327
323
    def prefixed_body_received(self, body_bytes):
328
324
        """No more body data will be received."""
329
325
        self._run_handler_code(self._command.do_body, (body_bytes,), {})