Skip to content

Commit

Permalink
Fix bug introduced in 2.2.4 (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
erssebaggala authored Oct 26, 2019
1 parent 179437e commit 6e15769
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.bodastate.boda_bulkcmparser</groupId>
<artifactId>boda-bulkcmparser</artifactId>
<packaging>jar</packaging>
<version>2.2.4</version>
<version>2.2.5</version>
<name>boda-bulkcmparser-pr</name>
<url>http://maven.apache.org</url>
<dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public class BodaBulkCMParser {
*
* Since 1.3.0
*/
final static String VERSION = "2.2.4";
final static String VERSION = "2.2.5";


private static final Logger LOGGER = LoggerFactory.getLogger(BodaBulkCMParser.class);
Expand Down Expand Up @@ -1547,7 +1547,6 @@ public void processVendorAttributes() {
if (vsDataTypeStack.containsKey(pName)) {
pValue = toCSVFormat(vsDataTypeStack.get(pName));
}


paramNames = paramNames + "," + pName;
paramValues = paramValues + "," + pValue;
Expand All @@ -1560,8 +1559,9 @@ public void processVendorAttributes() {
String threeGGPMo = vsDataType.replace("vsData", "");
if(separateVendorAttributes == false && xmlTagStack.contains(threeGGPMo)){
Stack _3gppAttr = new Stack();
if(!moThreeGPPAttrMap.isEmpty()) _3gppAttr = moThreeGPPAttrMap.get(threeGGPMo);

if(!moThreeGPPAttrMap.isEmpty() && moThreeGPPAttrMap.containsKey(threeGGPMo) ) _3gppAttr = moThreeGPPAttrMap.get(threeGGPMo);

for(int idx =0; idx < _3gppAttr.size(); idx++){
String pName = _3gppAttr.get(idx).toString();
String pValue= "";
Expand Down

0 comments on commit 6e15769

Please sign in to comment.