From b038af1ba21e6af4f769232bb76d2c0568e306ce Mon Sep 17 00:00:00 2001 From: Christopher Eby Date: Sun, 28 Aug 2011 03:29:10 -0500 Subject: [PATCH] Remove dead code --- src/org/kreed/vanilla/Song.java | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/src/org/kreed/vanilla/Song.java b/src/org/kreed/vanilla/Song.java index 1e7ea24c..46f166e5 100644 --- a/src/org/kreed/vanilla/Song.java +++ b/src/org/kreed/vanilla/Song.java @@ -286,27 +286,6 @@ public class Song implements Parcelable { albumId = cursor.getLong(5); } - /** - * Copies the fields from the given Song to this Song. - * - * @param other The Song to copy from. - */ - public void copy(Song other) - { - if (other == null) { - id = -1; - return; - } - - id = other.id; - albumId = other.albumId; - path = other.path; - title = other.title; - album = other.album; - artist = other.artist; - flags = other.flags; - } - /** * Query the MediaStore, if necessary, to fill this Song's fields. *