Delete unused class

This commit is contained in:
Mark Anderson 2015-06-18 22:25:30 +01:00
parent ea270d3834
commit 835bbd1bd3

View file

@ -1,17 +0,0 @@
package com.newsblur.view;
import android.text.TextPaint;
import android.text.style.ClickableSpan;
/**
* Created by mark on 28/05/15.
*/
public abstract class ClickableSpanWithoutUnderline extends ClickableSpan {
@Override
public void updateDrawState(TextPaint ds) {
super.updateDrawState(ds);
ds.setUnderlineText(false);
}
}