Show
Ignore:
Timestamp:
03/18/08 17:21:26 (8 months ago)
Author:
mikey
Message:

backlash from refactoring #138: clean up processor interface and handling in front controller

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/main/php/net/stubbles/service/jsonrpc/stubJsonRpcProcessor.php

    r1434 r1435  
    5050     * 
    5151     * This method only dispatches the request to different subprocessors. 
    52      *  
    53      * @return  stubAbstractProcessor 
    5452     */ 
    5553    public function process() 
     
    6361        $subProcessor = new $nqClassName(); 
    6462        $subProcessor->process($this->request, $this->session, $this->response, $this->loadClassMap()); 
    65         return $this; 
    6663    } 
    6764