Subversion Repositories SmartDukaan

Rev

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

Rev 25400 Rev 25401
Line 309... Line 309...
309
 
309
 
310
	}
310
	}
311
 
311
 
312
	private Map<String, InputStream> getStreamFileMap(ContentPojo contentPojo, EntityMediaPojo entityMediaPojo) {
312
	private Map<String, InputStream> getStreamFileMap(ContentPojo contentPojo, EntityMediaPojo entityMediaPojo) {
313
		Map<String, InputStream> map = new HashMap<>();
313
		Map<String, InputStream> map = new HashMap<>();
-
 
314
		LOGGER.info("entityMediaPojo.getMediaPojos() -[{}]", entityMediaPojo.getMediaPojos());
314
		for (int i = 0; i > entityMediaPojo.getMediaPojos().size(); i++) {
315
		for (int i = 0; i > entityMediaPojo.getMediaPojos().size(); i++) {
315
			MediaPojo mediaPojo = entityMediaPojo.getMediaPojos().get(i);
316
			MediaPojo mediaPojo = entityMediaPojo.getMediaPojos().get(i);
316
			String extension;
317
			String extension;
317
			String base64String = mediaPojo.getImageData();
318
			String base64String = mediaPojo.getImageData();
318
			String[] strings = base64String.split(",");
319
			String[] strings = base64String.split(",");