Skip to content

Commit

Permalink
Fix ordering of menu item types
Browse files Browse the repository at this point in the history
Also clean up some inconsistent spacing.
  • Loading branch information
brunchboy committed Aug 22, 2024
1 parent 9e98dcd commit c951436
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/main/java/org/deepsymmetry/beatlink/dbserver/Message.java
Original file line number Diff line number Diff line change
Expand Up @@ -680,17 +680,17 @@ public enum MenuItemType {
* Reports the title and artist of a track, returned when listing playlists or all tracks sorted by artist,
* or in their default sort order when the DJ has set this as the default second column for track lists.
*/
TRACK_TITLE_AND_ARTIST(0x0704),
TRACK_TITLE_AND_ARTIST (0x0704),
/**
* Reports the title and duration of a track, returned when listing playlists or all tracks sorted by time,
* Reports the title and rating of a track, returned when listing playlists or all tracks sorted by rating,
* or in their default sort order when the DJ has set this as the default second column for track lists.
*/
TRACK_TITLE_AND_TIME(0x0b04),
TRACK_TITLE_AND_RATING (0x0a04),
/**
* Reports the title and rating of a track, returned when listing playlists or all tracks sorted by rating,
* Reports the title and duration of a track, returned when listing playlists or all tracks sorted by time,
* or in their default sort order when the DJ has set this as the default second column for track lists.
*/
TRACK_TITLE_AND_RATING (0x0a04),
TRACK_TITLE_AND_TIME (0x0b04),
/**
* Reports the title and BPM of a track, returned when listing playlists or all tracks sorted by BPM,
* or in their default sort order when the DJ has set this as the default second column for track lists.
Expand Down

0 comments on commit c951436

Please sign in to comment.