Commit 3b4396da authored by Yusuke Iwaki's avatar Yusuke Iwaki

remove unused CHECKSTYLE:OFF/ON comments

parent 2a383afd
......@@ -7,28 +7,22 @@ import android.util.AttributeSet;
abstract class AbstractCustomFontTextView extends AppCompatTextView {
//CHECKSTYLE:OFF RedundantModifier
public AbstractCustomFontTextView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
init();
}
//CHECKSTYLE:OFF RedundantModifier
public AbstractCustomFontTextView(Context context, AttributeSet attrs) {
super(context, attrs);
init();
}
//CHECKSTYLE:ON RedundantModifier
//CHECKSTYLE:OFF RedundantModifier
public AbstractCustomFontTextView(Context context) {
super(context);
init();
}
//CHECKSTYLE:ON RedundantModifier
protected abstract String getFont();
//CHECKSTYLE:ON RedundantModifier
private void init() {
String font = getFont();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment