Fixed typo

This commit is contained in:
litetex 2021-11-03 17:30:30 +01:00 committed by GitHub
parent af936bc646
commit ecac897e7b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -442,7 +442,7 @@ public abstract class PlayQueue implements Serializable {
if (backup == null) {
backup = new ArrayList<>(streams);
}
// Can't shuffle an list that's empty or only has one element
// Can't shuffle a list that's empty or only has one element
if (size() <= 2) {
return;
}