sbcgua / ajson

Yet another json parser serializer for ABAP
MIT License
50 stars 15 forks source link

Fix path when using CamelCase #96

Closed mbtools closed 2 years ago

mbtools commented 2 years ago

Closes #95

Before

{  
  "code": "REPORT zfoobar.",
 "fileName": "test.abap",
 "profileInfo": {
  }
}

After

{  
  "code": "REPORT zfoobar.",
  "fileName": "test.abap",
  "profileInfo": {
    "showFullname": true,
    "position": "bottom-center"
  }
}
sbcgua commented 2 years ago

Hmmm, looks like a bug, but not clear how it worked before. May I ask to add a small unit test ?

mbtools commented 2 years ago

I added a test to the mapping class

sbcgua commented 2 years ago

Nice bug catch! merging ! Thank you !