Skip to content

Commit b79eafc

Browse files
authored
Update to metalava 0.3.5 (#121)
1 parent 76c68df commit b79eafc

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
agp = "8.10.1"
44
mavenPublish = "0.32.0"
5-
metalava = "0.3.3"
5+
metalava = "0.3.5"
66

77
kotlin = "2.0.21"
88
dokka = "1.8.10"

readmore-view/api/current.api

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
package com.webtoonscorp.android.readmore {
33

44
public final class ReadMoreTextView extends androidx.appcompat.widget.AppCompatTextView {
5-
ctor public ReadMoreTextView(android.content.Context context, optional android.util.AttributeSet? attrs, optional int defStyleAttr);
6-
ctor public ReadMoreTextView(android.content.Context context, optional android.util.AttributeSet? attrs);
75
ctor public ReadMoreTextView(android.content.Context context);
6+
ctor public ReadMoreTextView(android.content.Context context, optional android.util.AttributeSet? attrs);
7+
ctor public ReadMoreTextView(android.content.Context context, optional android.util.AttributeSet? attrs, optional int defStyleAttr);
88
method public boolean isExpandable();
99
method public boolean isExpanded();
1010
method public void setExpanded(boolean expanded);

readmore-view/src/main/java/com/webtoonscorp/android/readmore/ReadMoreTextView.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ public class ReadMoreTextView @JvmOverloads constructor(
166166
)
167167
}
168168

169-
fun setReadMoreMaxLines(maxLines: Int) {
169+
public fun setReadMoreMaxLines(maxLines: Int) {
170170
if (this.readMoreMaxLines != maxLines) {
171171
this.readMoreMaxLines = maxLines
172172

0 commit comments

Comments
 (0)