Skip to content

Commit

Permalink
Don't append U to WCDMA MOs
Browse files Browse the repository at this point in the history
  • Loading branch information
erssebaggala committed Dec 14, 2018
1 parent b952851 commit 917a51a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
*/
public class HuaweiCMObjectParser {

final static String VERSION = "1.0.8";
final static String VERSION = "1.0.9";

Logger logger = LoggerFactory.getLogger(HuaweiCMObjectParser.class);

Expand Down Expand Up @@ -534,7 +534,7 @@ public void startElementEvent(XMLEvent xmlEvent) throws FileNotFoundException {
String attrName = attribute.getName().getLocalPart();
String attrValue = attribute.getValue();
if (attrName.equals("name")) {
className = addUToUMTSCellMOs(attrValue);
className = attrValue;
//className = attrValue;
LinkedHashMap<String, String> Lhm = new LinkedHashMap<String, String>();
// classNameAttrsMap.put(className, Lhm);
Expand Down

0 comments on commit 917a51a

Please sign in to comment.