Skip to content

Commit

Permalink
OLE-8999 : Fixed the issue with placing request.
Browse files Browse the repository at this point in the history
  • Loading branch information
sheiksalahudeen committed Sep 8, 2016
1 parent 758226a commit f15b785
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ public List<String> getLocationLevelIds() {

public Map<String, String> getLocationMap(String itemLocation){
Map<String, String> locationMap = new HashMap<String, String>();
if(itemLocation!=null && itemLocation.isEmpty()) {
if(StringUtils.isNotBlank(itemLocation)) {
String[] locationArray = itemLocation.split("['/']");
List<String> locationList = Arrays.asList(locationArray);
for (String value : locationList) {
Expand Down

0 comments on commit f15b785

Please sign in to comment.