Skip to content

Commit

Permalink
music: eliminate all reference to artists albums
Browse files Browse the repository at this point in the history
It's no longer used in any capacity.
  • Loading branch information
OxygenCobalt committed Nov 12, 2023
1 parent d680135 commit 0ad7a89
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
6 changes: 0 additions & 6 deletions app/src/main/java/org/oxycblt/auxio/music/Music.kt
Original file line number Diff line number Diff line change
Expand Up @@ -317,12 +317,6 @@ interface Album : MusicParent {
* @author Alexander Capehart (OxygenCobalt)
*/
interface Artist : MusicParent {
/**
* All of the [Album]s this artist is credited to from [explicitAlbums] and [implicitAlbums].
* Note that any [Song] credited to this artist will have it's [Album] considered to be
* "indirectly" linked to this [Artist], and thus included in this list.
*/
val albums: Collection<Album>
/** Albums directly credited to this [Artist] via a "Album Artist" tag. */
val explicitAlbums: Collection<Album>
/** Albums indirectly credited to this [Artist] via an "Artist" tag. */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,6 @@ class ArtistImpl(
?: Name.Unknown(R.string.def_artist)

override val songs: Set<Song>
override val albums: Set<Album> = emptySet()
override val explicitAlbums: Set<Album>
override val implicitAlbums: Set<Album>
override val durationMs: Long?
Expand Down

0 comments on commit 0ad7a89

Please sign in to comment.