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.api; // w w w . j a v a 2 s.com import com.squareup.otto.Bus; public class UberApiBus extends Bus { private static UberApiBus uberApiBus; public static UberApiBus getInstance() { if (uberApiBus == null) { uberApiBus = new UberApiBus(); } return uberApiBus; } }