mirror of
https://github.com/TeamNewPipe/NewPipe
synced 2024-12-25 17:40:33 +00:00
Wrap in multiline comment so it colapses
This commit is contained in:
parent
e72c6eed24
commit
c93c52a58c
@ -74,6 +74,7 @@ public class PlaylistRemoteEntity implements PlaylistLocalItem {
|
|||||||
|
|
||||||
@Ignore
|
@Ignore
|
||||||
public boolean isIdenticalTo(final PlaylistInfo info) {
|
public boolean isIdenticalTo(final PlaylistInfo info) {
|
||||||
|
/*
|
||||||
// Returns boolean comparing the online playlist and the local copy.
|
// Returns boolean comparing the online playlist and the local copy.
|
||||||
// (False if info changed such as playlist name or track count)
|
// (False if info changed such as playlist name or track count)
|
||||||
// [Note that we don't check if the playlist creator changed:
|
// [Note that we don't check if the playlist creator changed:
|
||||||
@ -83,6 +84,7 @@ public class PlaylistRemoteEntity implements PlaylistLocalItem {
|
|||||||
// if you need this functionality back please use
|
// if you need this functionality back please use
|
||||||
// getUploader() == info.getUploaderName()
|
// getUploader() == info.getUploaderName()
|
||||||
// instead as it will work with blank names (Null value if I remember correctly).
|
// instead as it will work with blank names (Null value if I remember correctly).
|
||||||
|
*/
|
||||||
return getServiceId() == info.getServiceId() && getName().equals(info.getName()) &&
|
return getServiceId() == info.getServiceId() && getName().equals(info.getName()) &&
|
||||||
getStreamCount() == info.getStreamCount() && getUrl().equals(info.getUrl()) &&
|
getStreamCount() == info.getStreamCount() && getUrl().equals(info.getUrl()) &&
|
||||||
getThumbnailUrl().equals(info.getThumbnailUrl());
|
getThumbnailUrl().equals(info.getThumbnailUrl());
|
||||||
|
Loading…
Reference in New Issue
Block a user