Skip to content

Commit

Permalink
Remove redundant variable setting info
Browse files Browse the repository at this point in the history
  • Loading branch information
vrih committed Nov 22, 2018
1 parent b1aaf00 commit 42881ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ private List<MusicDirectory.Entry> createMusicSongs(int size) {
musicEntry.setBitRate(198);
musicEntry.setAlbumId("49");
musicEntry.setDuration(247);
musicEntry.setSize(Long.valueOf(6162717));
musicEntry.setSize(6162717L);
musicEntry.setArtistId("23");
musicEntry.setArtist("The Dada Weatherman");
musicEntry.setCloseness(0);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public HashMap getTags(RandomAccessFile s) throws IOException {
v3len = ((v3len & 0x7f000000) >> 3) | // for some funky reason, this is encoded as 7*4 bits
((v3len & 0x007f0000) >> 2) |
((v3len & 0x00007f00) >> 1) |
((v3len & 0x0000007f) >> 0) ;
((v3len & 0x0000007f)) ;

// debug(">> tag version ID3v2."+id3v);
// debug(">> LEN= "+v3len+" // "+v3len);
Expand Down

0 comments on commit 42881ea

Please sign in to comment.