Task #17838
Simplify data structures
Status:
Dropped
Priority:
Normal
Assignee:
-
Target version:
-
Start date:
Due date:
% Done:
0%
Estimated time:
Description
We can simplify the following data structures:
type Attr struct { name string val string }
type Property struct { name string val string }
We can have a simple map[string]string
for Attr and Property.
Make the required changes in the code and tests and verify that the tests pass.