summaryrefslogtreecommitdiff
path: root/src/librygel-server/rygel-media-resource.vala
diff options
context:
space:
mode:
authorJens Georg <mail@jensge.org>2015-02-20 00:17:41 +0100
committerJens Georg <mail@jensge.org>2015-03-06 10:30:17 +0100
commitfa993d74900152bbeb59a1cefedaee2187125932 (patch)
tree0178d9643264a72f7ffd5dce5251527c3f68be64 /src/librygel-server/rygel-media-resource.vala
parent0631d350b8c29f87835da79ab8780fc584fb809e (diff)
downloadrygel-fa993d74900152bbeb59a1cefedaee2187125932.tar.gz
server: Drop useless function
Vala is doing the right thing here. Signed-off-by: Jens Georg <mail@jensge.org>
Diffstat (limited to 'src/librygel-server/rygel-media-resource.vala')
-rw-r--r--src/librygel-server/rygel-media-resource.vala21
1 files changed, 4 insertions, 17 deletions
diff --git a/src/librygel-server/rygel-media-resource.vala b/src/librygel-server/rygel-media-resource.vala
index 3b3494d8..e9233d2a 100644
--- a/src/librygel-server/rygel-media-resource.vala
+++ b/src/librygel-server/rygel-media-resource.vala
@@ -95,7 +95,7 @@ public class Rygel.MediaResource : GLib.Object {
this.mime_type = that.mime_type;
this.dlna_profile = that.dlna_profile;
this.network = that.network;
- this.play_speeds = copy_speeds (that.play_speeds);
+ this.play_speeds = that.play_speeds;
this.dlna_conversion = that.dlna_conversion;
this.dlna_flags = that.dlna_flags;
this.dlna_operation = that.dlna_operation;
@@ -123,7 +123,7 @@ public class Rygel.MediaResource : GLib.Object {
this.mime_type = didl_resource.protocol_info.mime_type;
this.dlna_profile = didl_resource.protocol_info.dlna_profile;
this.network = didl_resource.protocol_info.network;
- this.play_speeds = copy_speeds (didl_resource.protocol_info.play_speeds);
+ this.play_speeds = didl_resource.protocol_info.play_speeds;
this.dlna_conversion = didl_resource.protocol_info.dlna_conversion;
this.dlna_flags = didl_resource.protocol_info.dlna_flags;
this.dlna_operation = didl_resource.protocol_info.dlna_operation;
@@ -134,19 +134,6 @@ public class Rygel.MediaResource : GLib.Object {
return new MediaResource.from_resource (this.get_name (), this);
}
- public static string []? copy_speeds (string? [] src) {
- if (src == null) {
- return null;
- }
- var new_speeds = new string[src.length];
- int speed_index = 0;
- foreach (var speed in src) {
- new_speeds[speed_index++] = speed;
- }
-
- return new_speeds;
- }
-
public string get_name () {
return this.name;
}
@@ -184,7 +171,7 @@ public class Rygel.MediaResource : GLib.Object {
this.dlna_conversion = pi.dlna_conversion;
this.dlna_operation = pi.dlna_operation;
this.dlna_flags = pi.dlna_flags;
- this.play_speeds = copy_speeds (pi.play_speeds);
+ this.play_speeds = pi.play_speeds;
}
public ProtocolInfo get_protocol_info
@@ -205,7 +192,7 @@ public class Rygel.MediaResource : GLib.Object {
new_pi.dlna_flags = this.dlna_flags;
// ProtocolInfo doesn't like having play_speeds set to null
if (this.play_speeds != null) {
- new_pi.play_speeds = copy_speeds (this.play_speeds);
+ new_pi.play_speeds = this.play_speeds;
}
return new_pi;