aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/compatibility/AndroidLevel11Emulation.java
blob: b4111abfe6faf7e47a107c25c0ce0c3caac7ce97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package cgeo.geocaching.compatibility;

import android.widget.TextView;

public class AndroidLevel11Emulation implements AndroidLevel11Interface {

    @Override
    public void setTextIsSelectable(final TextView textView, final boolean selectable) {
        // do nothing
    }

}