Changeset 85

Show
Ignore:
Timestamp:
01/17/07 17:47:08 (2 years ago)
Author:
schst
Message:

Removed obsolete code

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/main/php/xml/serializer/stubXMLSerializer.php

    r84 r85  
    4343     * @param mixed $data                      The data to serialize 
    4444     * @param stubXMLStreamWriter $xmlWriter   The XML Writer to use 
    45      * @param array $opts                      Options to influence the serializing, not used yet 
     45     * @param array $opts                      Options to influence the serializing 
    4646     */ 
    4747    public function serialize($data, stubXMLStreamWriter $xmlWriter, $opts = array()) { 
     
    6161     */ 
    6262    protected function serializeDispatcher($data, stubXMLStreamWriter $xmlWriter, $tagName = null) { 
    63         $this->depth++; 
    6463        switch (gettype($data)) { 
    6564            case 'NULL': 
     
    9796                break; 
    9897        } 
    99         $this->depth--; 
    10098    } 
    10199