Back to project page MorseWithPals.
The source code is released under:
MIT License
If you think the Android project MorseWithPals 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 com.funintended.morsepals; //from w ww.j a v a2 s. co m import com.squareup.otto.Bus; /** * Created with IntelliJ IDEA. * User: dusting * Date: 6/6/13 * Time: 8:10 AM * To change this template use File | Settings | File Templates. */ public class BusProvider { private static final Bus BUS = new Bus(); public static Bus getInstance() { return BUS; } private BusProvider() { // No instances. } }