Merge remote-tracking branch 'origin/pr/1465'
This commit is contained in:
@@ -326,7 +326,7 @@ public class UserDao extends AbstractDao {
|
||||
}
|
||||
}
|
||||
|
||||
private class UserRowMapper implements RowMapper<User> {
|
||||
private static class UserRowMapper implements RowMapper<User> {
|
||||
public User mapRow(ResultSet rs, int rowNum) throws SQLException {
|
||||
return new User(rs.getString(1),
|
||||
decrypt(rs.getString(2)),
|
||||
|
||||
@@ -42,7 +42,7 @@ public class InternetRadioService {
|
||||
/**
|
||||
* Generic exception class for playlists.
|
||||
*/
|
||||
private class PlaylistException extends Exception {
|
||||
private static class PlaylistException extends Exception {
|
||||
public PlaylistException(String message) {
|
||||
super(message);
|
||||
}
|
||||
|
||||
+2
-2
@@ -182,7 +182,7 @@ public class PlaylistServiceTestImport {
|
||||
assertEquals(3, mediaFiles.size());
|
||||
}
|
||||
|
||||
private class PersistPlayList implements Answer {
|
||||
private static class PersistPlayList implements Answer {
|
||||
private final int id;
|
||||
public PersistPlayList(int id) {
|
||||
this.id = id;
|
||||
@@ -196,7 +196,7 @@ public class PlaylistServiceTestImport {
|
||||
}
|
||||
}
|
||||
|
||||
private class MediaFileHasEverything implements Answer {
|
||||
private static class MediaFileHasEverything implements Answer {
|
||||
|
||||
@Override
|
||||
public Object answer(InvocationOnMock invocationOnMock) {
|
||||
|
||||
Reference in New Issue
Block a user