Make some minor changes

This commit is contained in:
mhmdanas 2021-05-15 18:48:16 +03:00
parent 9595733563
commit eb1cefe2fa
3 changed files with 4 additions and 6 deletions

View File

@ -58,10 +58,8 @@ tailrec fun Throwable?.hasCause(checkSubtypes: Boolean, vararg causesToCheck: Cl
if (causeClass.isAssignableFrom(this.javaClass)) {
return true
}
} else {
if (causeClass == this.javaClass) {
return true
}
} else if (causeClass == this.javaClass) {
return true
}
}

View File

@ -15,7 +15,7 @@ class HeaderItem(
override fun bind(viewBinding: HeaderItemBinding, position: Int) {
viewBinding.headerTitle.text = title
val listener: OnClickListener? = if (onClickListener != null) OnClickListener { onClickListener.invoke() } else null
val listener = onClickListener?.let { OnClickListener { onClickListener.invoke() } }
viewBinding.root.setOnClickListener(listener)
}

View File

@ -712,7 +712,7 @@ public class WebMWriter implements Closeable {
return 0;
}
// TODO: in the adove code, find and select the shortest track for the desired kind
// TODO: in the above code, find and select the shortest track for the desired kind
for (i = 0; i < infoTracks.length; i++) {
if (kind == infoTracks[i].trackType) {
return i;