Back to project page SurgePriceWidget.
The source code is released under:
MIT License
If you think the Android project SurgePriceWidget listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package me.mattlogan.surgepricewidget.location; /*from w ww.j ava 2s . com*/ import com.squareup.otto.Bus; public class LocationBus extends Bus { private static LocationBus locationBus; public static LocationBus getInstance() { if (locationBus == null) { locationBus = new LocationBus(); } return locationBus; } }