summaryrefslogtreecommitdiffstats
path: root/src/com/cyanogenmod/eleven/loaders
diff options
context:
space:
mode:
authorMichael Bestas <mikeioannina@cyanogenmod.org>2016-04-24 20:16:58 +0300
committerDanny Baumann <dannybaumann@web.de>2016-04-25 00:56:31 -0700
commitac7e035ab75f8ad8b74faefaa8763b4f3faca526 (patch)
treefa135c985c53c7a5af854a48dc78ac27b9a4cf27 /src/com/cyanogenmod/eleven/loaders
parent1b3cbd3fe25a23aa40b6f88e1e3a02b7de4d6e78 (diff)
downloadandroid_packages_apps_Eleven-ac7e035ab75f8ad8b74faefaa8763b4f3faca526.tar.gz
android_packages_apps_Eleven-ac7e035ab75f8ad8b74faefaa8763b4f3faca526.tar.bz2
android_packages_apps_Eleven-ac7e035ab75f8ad8b74faefaa8763b4f3faca526.zip
Eleven: Cleanup all the whitespace
Change-Id: I82024ce0ada3220b6b87178ea36303b53445e065
Diffstat (limited to 'src/com/cyanogenmod/eleven/loaders')
-rw-r--r--src/com/cyanogenmod/eleven/loaders/AlbumLoader.java4
-rw-r--r--src/com/cyanogenmod/eleven/loaders/AlbumSongLoader.java5
-rw-r--r--src/com/cyanogenmod/eleven/loaders/ArtistLoader.java6
-rw-r--r--src/com/cyanogenmod/eleven/loaders/LastAddedLoader.java4
-rw-r--r--src/com/cyanogenmod/eleven/loaders/NowPlayingCursor.java2
-rw-r--r--src/com/cyanogenmod/eleven/loaders/PlaylistLoader.java6
-rw-r--r--src/com/cyanogenmod/eleven/loaders/PlaylistSongLoader.java2
-rw-r--r--src/com/cyanogenmod/eleven/loaders/QueueLoader.java6
-rw-r--r--src/com/cyanogenmod/eleven/loaders/SearchLoader.java4
-rw-r--r--src/com/cyanogenmod/eleven/loaders/SongLoader.java4
-rw-r--r--src/com/cyanogenmod/eleven/loaders/WrappedAsyncTaskLoader.java4
11 files changed, 23 insertions, 24 deletions
diff --git a/src/com/cyanogenmod/eleven/loaders/AlbumLoader.java b/src/com/cyanogenmod/eleven/loaders/AlbumLoader.java
index 5532a35..787e7d1 100644
--- a/src/com/cyanogenmod/eleven/loaders/AlbumLoader.java
+++ b/src/com/cyanogenmod/eleven/loaders/AlbumLoader.java
@@ -35,7 +35,7 @@ import java.util.List;
/**
* Used to query {@link MediaStore.Audio.Albums.EXTERNAL_CONTENT_URI} and return
* the albums on a user's device.
- *
+ *
* @author Andrew Neal (andrewdneal@gmail.com)
*/
public class AlbumLoader extends SectionCreator.SimpleListLoader<Album> {
@@ -139,7 +139,7 @@ public class AlbumLoader extends SectionCreator.SimpleListLoader<Album> {
/**
* Creates the {@link Cursor} used to run the query.
- *
+ *
* @param context The {@link Context} to use.
* @param artistId The artistId we want to find albums for or null if we want all albums
* @return The {@link Cursor} used to run the album query.
diff --git a/src/com/cyanogenmod/eleven/loaders/AlbumSongLoader.java b/src/com/cyanogenmod/eleven/loaders/AlbumSongLoader.java
index 83676cd..908e181 100644
--- a/src/com/cyanogenmod/eleven/loaders/AlbumSongLoader.java
+++ b/src/com/cyanogenmod/eleven/loaders/AlbumSongLoader.java
@@ -29,7 +29,7 @@ import java.util.List;
/**
* Used to query {@link MediaStore.Audio.Media.EXTERNAL_CONTENT_URI} and return
* the Song for a particular album.
- *
+ *
* @author Andrew Neal (andrewdneal@gmail.com)
*/
public class AlbumSongLoader extends WrappedAsyncTaskLoader<List<Song>> {
@@ -51,7 +51,7 @@ public class AlbumSongLoader extends WrappedAsyncTaskLoader<List<Song>> {
/**
* Constructor of <code>AlbumSongHandler</code>
- *
+ *
* @param context The {@link Context} to use.
* @param albumId The Id of the album the songs belong to.
*/
@@ -135,4 +135,3 @@ public class AlbumSongLoader extends WrappedAsyncTaskLoader<List<Song>> {
}
}
-
diff --git a/src/com/cyanogenmod/eleven/loaders/ArtistLoader.java b/src/com/cyanogenmod/eleven/loaders/ArtistLoader.java
index e572c96..e26a0a6 100644
--- a/src/com/cyanogenmod/eleven/loaders/ArtistLoader.java
+++ b/src/com/cyanogenmod/eleven/loaders/ArtistLoader.java
@@ -33,7 +33,7 @@ import java.util.List;
/**
* Used to query {@link MediaStore.Audio.Artists.EXTERNAL_CONTENT_URI} and
* return the artists on a user's device.
- *
+ *
* @author Andrew Neal (andrewdneal@gmail.com)
*/
public class ArtistLoader extends SectionCreator.SimpleListLoader<Artist> {
@@ -50,7 +50,7 @@ public class ArtistLoader extends SectionCreator.SimpleListLoader<Artist> {
/**
* Constructor of <code>ArtistLoader</code>
- *
+ *
* @param context The {@link Context} to use
*/
public ArtistLoader(final Context context) {
@@ -117,7 +117,7 @@ public class ArtistLoader extends SectionCreator.SimpleListLoader<Artist> {
}
/**
* Creates the {@link Cursor} used to run the query.
- *
+ *
* @param context The {@link Context} to use.
* @return The {@link Cursor} used to run the artist query.
*/
diff --git a/src/com/cyanogenmod/eleven/loaders/LastAddedLoader.java b/src/com/cyanogenmod/eleven/loaders/LastAddedLoader.java
index 6f948f5..967c0a9 100644
--- a/src/com/cyanogenmod/eleven/loaders/LastAddedLoader.java
+++ b/src/com/cyanogenmod/eleven/loaders/LastAddedLoader.java
@@ -30,7 +30,7 @@ import java.util.List;
/**
* Used to query {@link MediaStore.Audio.Media.EXTERNAL_CONTENT_URI} and return
* the Song the user added over the past four of weeks.
- *
+ *
* @author Andrew Neal (andrewdneal@gmail.com)
*/
public class LastAddedLoader extends SectionCreator.SimpleListLoader<Song> {
@@ -46,7 +46,7 @@ public class LastAddedLoader extends SectionCreator.SimpleListLoader<Song> {
/**
* Constructor of <code>LastAddedHandler</code>
- *
+ *
* @param context The {@link Context} to use.
*/
public LastAddedLoader(final Context context) {
diff --git a/src/com/cyanogenmod/eleven/loaders/NowPlayingCursor.java b/src/com/cyanogenmod/eleven/loaders/NowPlayingCursor.java
index e0ba08a..8d524bc 100644
--- a/src/com/cyanogenmod/eleven/loaders/NowPlayingCursor.java
+++ b/src/com/cyanogenmod/eleven/loaders/NowPlayingCursor.java
@@ -54,7 +54,7 @@ public class NowPlayingCursor extends AbstractCursor {
/**
* Constructor of <code>NowPlayingCursor</code>
- *
+ *
* @param context The {@link Context} to use
*/
public NowPlayingCursor(final Context context) {
diff --git a/src/com/cyanogenmod/eleven/loaders/PlaylistLoader.java b/src/com/cyanogenmod/eleven/loaders/PlaylistLoader.java
index 4f8263c..70ec293 100644
--- a/src/com/cyanogenmod/eleven/loaders/PlaylistLoader.java
+++ b/src/com/cyanogenmod/eleven/loaders/PlaylistLoader.java
@@ -31,7 +31,7 @@ import java.util.List;
/**
* Used to query {@link MediaStore.Audio.Playlists.EXTERNAL_CONTENT_URI} and
* return the playlists on a user's device.
- *
+ *
* @author Andrew Neal (andrewdneal@gmail.com)
*/
public class PlaylistLoader extends WrappedAsyncTaskLoader<List<Playlist>> {
@@ -48,7 +48,7 @@ public class PlaylistLoader extends WrappedAsyncTaskLoader<List<Playlist>> {
/**
* Constructor of <code>PlaylistLoader</code>
- *
+ *
* @param context The {@link Context} to use
*/
public PlaylistLoader(final Context context) {
@@ -113,7 +113,7 @@ public class PlaylistLoader extends WrappedAsyncTaskLoader<List<Playlist>> {
/**
* Creates the {@link Cursor} used to run the query.
- *
+ *
* @param context The {@link Context} to use.
* @return The {@link Cursor} used to run the playlist query.
*/
diff --git a/src/com/cyanogenmod/eleven/loaders/PlaylistSongLoader.java b/src/com/cyanogenmod/eleven/loaders/PlaylistSongLoader.java
index e998e8f..a43122a 100644
--- a/src/com/cyanogenmod/eleven/loaders/PlaylistSongLoader.java
+++ b/src/com/cyanogenmod/eleven/loaders/PlaylistSongLoader.java
@@ -250,7 +250,7 @@ public class PlaylistSongLoader extends WrappedAsyncTaskLoader<List<Song>> {
/**
* Creates the {@link Cursor} used to run the query.
- *
+ *
* @param context The {@link Context} to use.
* @param playlistID The playlist the songs belong to.
* @return The {@link Cursor} used to run the song query.
diff --git a/src/com/cyanogenmod/eleven/loaders/QueueLoader.java b/src/com/cyanogenmod/eleven/loaders/QueueLoader.java
index 00caa52..64bab6e 100644
--- a/src/com/cyanogenmod/eleven/loaders/QueueLoader.java
+++ b/src/com/cyanogenmod/eleven/loaders/QueueLoader.java
@@ -24,7 +24,7 @@ import java.util.List;
/**
* Used to return the current playlist or queue.
- *
+ *
* @author Andrew Neal (andrewdneal@gmail.com)
*/
public class QueueLoader extends WrappedAsyncTaskLoader<List<Song>> {
@@ -41,7 +41,7 @@ public class QueueLoader extends WrappedAsyncTaskLoader<List<Song>> {
/**
* Constructor of <code>QueueLoader</code>
- *
+ *
* @param context The {@link Context} to use
*/
public QueueLoader(final Context context) {
@@ -99,7 +99,7 @@ public class QueueLoader extends WrappedAsyncTaskLoader<List<Song>> {
/**
* Creates the {@link Cursor} used to run the query.
- *
+ *
* @param context The {@link Context} to use.
* @return The {@link Cursor} used to run the song query.
*/
diff --git a/src/com/cyanogenmod/eleven/loaders/SearchLoader.java b/src/com/cyanogenmod/eleven/loaders/SearchLoader.java
index c87c051..6b261e3 100644
--- a/src/com/cyanogenmod/eleven/loaders/SearchLoader.java
+++ b/src/com/cyanogenmod/eleven/loaders/SearchLoader.java
@@ -43,7 +43,7 @@ public class SearchLoader extends WrappedAsyncTaskLoader<List<Song>> {
/**
* Constructor of <code>SongLoader</code>
- *
+ *
* @param context The {@link Context} to use
* @param query The search query
*/
@@ -115,7 +115,7 @@ public class SearchLoader extends WrappedAsyncTaskLoader<List<Song>> {
/**
* * @param context The {@link Context} to use.
- *
+ *
* @param query The user's query.
* @return The {@link Cursor} used to perform the search.
*/
diff --git a/src/com/cyanogenmod/eleven/loaders/SongLoader.java b/src/com/cyanogenmod/eleven/loaders/SongLoader.java
index 3037c53..a138a53 100644
--- a/src/com/cyanogenmod/eleven/loaders/SongLoader.java
+++ b/src/com/cyanogenmod/eleven/loaders/SongLoader.java
@@ -34,7 +34,7 @@ import java.util.List;
/**
* Used to query {@link MediaStore.Audio.Media.EXTERNAL_CONTENT_URI} and return
* the songs on a user's device.
- *
+ *
* @author Andrew Neal (andrewdneal@gmail.com)
*/
public class SongLoader extends SectionCreator.SimpleListLoader<Song> {
@@ -153,7 +153,7 @@ public class SongLoader extends SectionCreator.SimpleListLoader<Song> {
/**
* Creates the {@link Cursor} used to run the query.
- *
+ *
* @param context The {@link Context} to use.
* @param selection Additional selection statement to use
* @return The {@link Cursor} used to run the song query.
diff --git a/src/com/cyanogenmod/eleven/loaders/WrappedAsyncTaskLoader.java b/src/com/cyanogenmod/eleven/loaders/WrappedAsyncTaskLoader.java
index 48d584e..9b6caba 100644
--- a/src/com/cyanogenmod/eleven/loaders/WrappedAsyncTaskLoader.java
+++ b/src/com/cyanogenmod/eleven/loaders/WrappedAsyncTaskLoader.java
@@ -7,7 +7,7 @@ import android.support.v4.content.AsyncTaskLoader;
/**
* <a href="http://code.google.com/p/android/issues/detail?id=14944">Issue
* 14944</a>
- *
+ *
* @author Alexander Blom
*/
public abstract class WrappedAsyncTaskLoader<D> extends AsyncTaskLoader<D> {
@@ -16,7 +16,7 @@ public abstract class WrappedAsyncTaskLoader<D> extends AsyncTaskLoader<D> {
/**
* Constructor of <code>WrappedAsyncTaskLoader</code>
- *
+ *
* @param context The {@link Context} to use.
*/
public WrappedAsyncTaskLoader(Context context) {