Remove License#contentUri

It seems to not be used anywhere.
This commit is contained in:
mhmdanas 2021-02-08 19:54:30 +03:00
parent b9cd55188e
commit 092f9170cc
1 changed files with 1 additions and 9 deletions

View File

@ -1,6 +1,5 @@
package org.schabi.newpipe.about package org.schabi.newpipe.about
import android.net.Uri
import android.os.Parcelable import android.os.Parcelable
import kotlinx.android.parcel.Parcelize import kotlinx.android.parcel.Parcelize
import java.io.Serializable import java.io.Serializable
@ -9,11 +8,4 @@ import java.io.Serializable
* Class for storing information about a software license. * Class for storing information about a software license.
*/ */
@Parcelize @Parcelize
class License(val name: String, val abbreviation: String, val filename: String) : Parcelable, Serializable { class License(val name: String, val abbreviation: String, val filename: String) : Parcelable, Serializable
val contentUri: Uri
get() = Uri.Builder()
.scheme("file")
.path("/android_asset")
.appendPath(filename)
.build()
}