Fix ktlint errors

This commit is contained in:
Stypox 2020-11-04 18:07:40 +01:00
parent f0ca916432
commit b66047e084
No known key found for this signature in database
GPG key ID: 4BDF1B40A49FDD23
10 changed files with 99 additions and 47 deletions

View file

@ -1,13 +1,13 @@
package us.shandian.giga.get
import android.os.Parcelable
import java.io.Serializable
import kotlinx.android.parcel.Parcelize
import org.schabi.newpipe.extractor.MediaFormat
import org.schabi.newpipe.extractor.stream.AudioStream
import org.schabi.newpipe.extractor.stream.Stream
import org.schabi.newpipe.extractor.stream.SubtitlesStream
import org.schabi.newpipe.extractor.stream.VideoStream
import java.io.Serializable
@Parcelize
class MissionRecoveryInfo(
@ -62,10 +62,10 @@ class MissionRecoveryInfo(
}
}
str.append(" format=")
.append(format.getName())
.append(' ')
.append(info)
.append('}')
.append(format.getName())
.append(' ')
.append(info)
.append('}')
return str.toString()
}
}