Skip to content

Commit 8e0493c

Browse files
committed
add @nullable annotations to class constructors
1 parent 80301f4 commit 8e0493c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

expandabletextview/src/main/java/at/blogc/android/views/ExpandableTextView.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,12 @@ public ExpandableTextView(final Context context)
5858
this(context, null);
5959
}
6060

61-
public ExpandableTextView(final Context context, final AttributeSet attrs)
61+
public ExpandableTextView(final Context context, @Nullable final AttributeSet attrs)
6262
{
6363
this(context, attrs, 0);
6464
}
6565

66-
public ExpandableTextView(final Context context, final AttributeSet attrs, final int defStyle)
66+
public ExpandableTextView(final Context context, @Nullable final AttributeSet attrs, final int defStyle)
6767
{
6868
super(context, attrs, defStyle);
6969

0 commit comments

Comments
 (0)