Updafe formatting

This commit is contained in:
Andrew Rabert 2019-01-22 00:06:40 -05:00
parent 94bf3cbb57
commit b86cc33bbf
6 changed files with 16 additions and 15 deletions

View File

@ -169,7 +169,8 @@ public class SubsonicFragmentActivity extends SubsonicActivity implements Downlo
slideUpPanel = findViewById(R.id.slide_up_panel);
panelSlideListener = new SlidingUpPanelLayout.PanelSlideListener() {
@Override
public void onPanelSlide(View panel, float slideOffset) {}
public void onPanelSlide(View panel, float slideOffset) {
}
@Override
public void onPanelStateChanged(View panel, PanelState previousState, PanelState newState) {
@ -607,7 +608,7 @@ public class SubsonicFragmentActivity extends SubsonicActivity implements Downlo
return true;
}
}
private void createAccount() {
final Context context = this;

View File

@ -1331,7 +1331,7 @@ public class SubsonicFragment extends Fragment implements SwipeRefreshLayout.OnR
return getCurrentAdapter().getSelected();
}
void playNow(final boolean shuffle, final boolean append, final boolean playNext) {
void playNow(final boolean shuffle, final boolean append, final boolean playNext) {
List<Entry> songs = getSelectedEntries();
if (!songs.isEmpty()) {
download(songs, append, !append, playNext, shuffle);

View File

@ -31,8 +31,8 @@ class Common {
}
/*
** Returns a 32bit int from given byte offset in LE
*/
** Returns a 32bit int from given byte offset in LE
*/
private int b2le32(byte[] b, int off) {
int r = 0;
for (int i = 0; i < 4; i++) {
@ -50,8 +50,8 @@ class Common {
}
/*
** convert 'byte' value into unsigned int
*/
** convert 'byte' value into unsigned int
*/
int b2u(byte x) {
return (x & 0xFF);
}

View File

@ -52,8 +52,8 @@ class FlacFile extends Common {
}
/* Parses the metadata block at 'offset' and returns
** [header_size, payload_size, type, stop_after]
*/
** [header_size, payload_size, type, stop_after]
*/
private int[] parse_metadata_block(RandomAccessFile s, long offset) throws IOException {
int[] result = new int[4];
byte[] mb_head = new byte[4];

View File

@ -56,8 +56,8 @@ class ID3v2File extends Common {
}
/* Parses all ID3v2 frames at the current position up until payload_len
** bytes were read
*/
** bytes were read
*/
private HashMap parse_v3_frames(RandomAccessFile s, long payload_len) throws IOException {
HashMap tags = new HashMap();
byte[] frame = new byte[10]; // a frame header is always 10 bytes

View File

@ -49,8 +49,8 @@ class OggFile extends Common {
/* Parses the ogg page at offset 'offset' and returns
** [header_size, payload_size, type]
*/
** [header_size, payload_size, type]
*/
private long[] parse_ogg_page(RandomAccessFile s, long offset) throws IOException {
long[] result = new long[3]; // [header_size, payload_size]
byte[] p_header = new byte[OGG_PAGE_SIZE]; // buffer for the page header
@ -93,8 +93,8 @@ class OggFile extends Common {
}
/* In 'vorbiscomment' field is prefixed with \3vorbis in OGG files
** we check that this marker is present and call the generic comment
** parset with the correct offset (+7) */
** we check that this marker is present and call the generic comment
** parset with the correct offset (+7) */
private HashMap parse_ogg_vorbis_comment(RandomAccessFile s, long offset, long pl_len) throws IOException {
final int pfx_len = 7;
byte[] pfx = new byte[pfx_len];