Skip to content

Commit

Permalink
subsystem: Move Sticker class into the subsystem package.
Browse files Browse the repository at this point in the history
  • Loading branch information
avuton committed Dec 9, 2014
1 parent c967005 commit 3e6479f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion JMPDComm/src/main/java/org/a0z/mpd/CommandQueue.java
Expand Up @@ -183,7 +183,7 @@ public void reverse() {
* @throws IOException Thrown upon a communication error with the server.
* @throws MPDException Thrown if an error occurs as a result of command execution.
*/
List<String> send(final MPDConnection mpdConnection) throws IOException, MPDException {
public List<String> send(final MPDConnection mpdConnection) throws IOException, MPDException {
return send(mpdConnection, false);
}

Expand Down
1 change: 1 addition & 0 deletions JMPDComm/src/main/java/org/a0z/mpd/MPD.java
Expand Up @@ -40,6 +40,7 @@
import org.a0z.mpd.item.Music;
import org.a0z.mpd.item.PlaylistFile;
import org.a0z.mpd.item.Stream;
import org.a0z.mpd.subsystem.Sticker;

import java.io.IOException;
import java.net.InetAddress;
Expand Down
Expand Up @@ -25,8 +25,12 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

package org.a0z.mpd;
package org.a0z.mpd.subsystem;

import org.a0z.mpd.CommandQueue;
import org.a0z.mpd.Log;
import org.a0z.mpd.MPDCommand;
import org.a0z.mpd.Tools;
import org.a0z.mpd.connection.MPDConnection;
import org.a0z.mpd.exception.MPDException;
import org.a0z.mpd.item.FilesystemTreeEntry;
Expand Down
Expand Up @@ -20,9 +20,9 @@
import com.namelessdev.mpdroid.R;

import org.a0z.mpd.MPDStatus;
import org.a0z.mpd.Sticker;
import org.a0z.mpd.exception.MPDException;
import org.a0z.mpd.item.Music;
import org.a0z.mpd.subsystem.Sticker;

import android.content.SharedPreferences;
import android.os.AsyncTask;
Expand Down

0 comments on commit 3e6479f

Please sign in to comment.