This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Created by M Saif Ullah... Youtube.com/u4universe | |
public class SampleDataProvider { | |
public static List<CityDataItem> cityDataItemList; | |
public static Map<String,CityDataItem> dataItemMap; | |
static { | |
cityDataItemList =new ArrayList<>(); | |
dataItemMap = new HashMap<>(); |