Skip to content

Commit aac4e3b

Browse files
committedSep 26, 2014
dmix: Reformat the entire project.
This has been very slow going class by class, go ahead and reformat the remainder.
1 parent a0b3301 commit aac4e3b

File tree

120 files changed

+3936
-3327
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

120 files changed

+3936
-3327
lines changed
 

‎.idea/codeStyleSettings.xml

+225-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎JMPDComm/src/main/java/org/a0z/mpd/AlbumInfo.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,15 @@
3636

3737
public class AlbumInfo {
3838

39-
protected final String artist;
39+
private static final String INVALID_ALBUM_KEY = "INVALID_ALBUM_KEY";
4040

4141
protected final String album;
4242

43-
protected String path;
43+
protected final String artist;
4444

4545
protected String filename;
4646

47-
private static final String INVALID_ALBUM_KEY = "INVALID_ALBUM_KEY";
47+
protected String path;
4848

4949
public AlbumInfo(Album album) {
5050
Artist a = album.getArtist();
@@ -120,7 +120,7 @@ public String getPath() {
120120

121121
@Override
122122
public int hashCode() {
123-
return Arrays.hashCode(new Object[] {artist, album});
123+
return Arrays.hashCode(new Object[]{artist, album});
124124
}
125125

126126
public boolean isValid() {

0 commit comments

Comments
 (0)