Added explicit "null" return to function.

This commit is contained in:
Harrison Deng 2022-11-25 16:09:04 +00:00
parent 13ffc874d3
commit 858423629d

View File

@ -105,6 +105,7 @@ export default class MusicPlaylist {
if (removed.length > 0) { if (removed.length > 0) {
return removed[0]; return removed[0];
} }
return null;
} }
/** /**