Details
-
Bug
-
Status: In Progress
-
Medium
-
Resolution: Unresolved
-
None
Description
if we have two grouping with names "my-grouping" and "my_grouping" both of them will be resolved as my_grouping which is wrong.
Same thing happens if we have "MyGrp" and "My_grp"
example model:
module example {
yang-version 1.1;
namespace "urn:opendaylight:params:xml:ns:yang:example";
prefix "example";
revision "2018-05-17" { // TODO change revision to date of model creation
description "Initial revision of example model";
}
grouping MyGrp{
leaf foo {
type string;
}
}
grouping My_grp{
leaf bar {
type string;
}
}
container my_container {
uses MyGrp;
uses My_grp;
}
}
Attachments
Issue Links
Gerrit Reviews
| # | Subject | Branch | Project | Status | CR | V |
|---|---|---|---|---|---|---|
| 96980,33 | Add bijective name mapping | master | mdsal | Status: NEW | +1 | +1 |