Subversion Repositories SmartDukaan

Rev

Rev 25886 | Rev 25891 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 25886 Rev 25890
Line 585... Line 585...
585
 
585
 
586
			for (int j = 0; j < doc.getJSONArray("_childDocuments_").length(); j++) {
586
			for (int j = 0; j < doc.getJSONArray("_childDocuments_").length(); j++) {
587
				JSONObject childItem = doc.getJSONArray("_childDocuments_").getJSONObject(j);
587
				JSONObject childItem = doc.getJSONArray("_childDocuments_").getJSONObject(j);
588
				int itemId = childItem.getInt("itemId_i");
588
				int itemId = childItem.getInt("itemId_i");
589
				TagListing tl = itemTagListingMap.get(itemId);
589
				TagListing tl = itemTagListingMap.get(itemId);
-
 
590
				if(tl==null) {
-
 
591
					logger.warn("Could not find item id {}", itemId);
-
 
592
				}
590
				if (hotDeal) {
593
				if (hotDeal) {
591
					if (!tl.isHotDeals()) {
594
					if (!tl.isHotDeals()) {
592
						continue;
595
						continue;
593
					}
596
					}
594
				}
597
				}