kshchepanovskyi / protostuff-googlecode-exported

Automatically exported from code.google.com/p/protostuff

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

YamlOutput bug on repeated message fields

GoogleCodeExporter opened this issue · comments

The buggy output:

--- !PList
p: !Todo[]
  - 
    key: CgFD4QlyAgAB
    content: hello 1
    priority: 1
    completed: false
  - 
      - CgFD4QlyBQAC
    content: hello 2
    priority: 1
    completed: false
  - 
      - CgFD4QlyBQAD
    content: hello 3
    priority: 1
    completed: false

The expected output:
--- !PList
p: !Todo[]
  - 
    key: CgFD4QlyAgAB
    content: hello 1
    priority: 1
    completed: false
  - 
    key: CgFD4QlyBQAC
    content: hello 2
    priority: 1
    completed: false
  - 
    key: CgFD4QlyBQAD
    content: hello 3
    priority: 1
    completed: false

Original issue reported on code.google.com by david.yu...@gmail.com on 30 Jan 2014 at 3:30

Fixed @rev 1675

Original comment by david.yu...@gmail.com on 30 Jan 2014 at 3:44

  • Changed state: Fixed