From 2cfe812246369181afd8efea8e93def03189a1cf Mon Sep 17 00:00:00 2001 From: Manish Goregaokar Date: Sun, 8 Jun 2014 22:03:36 +0530 Subject: [PATCH] Fix some deprecated warnings for to_owned() --- android.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android.rs b/android.rs index a4b03c5..412558a 100644 --- a/android.rs +++ b/android.rs @@ -28,7 +28,7 @@ impl AlertMethods for Alert { fn prompt_value(&self) -> ~str { // TODO - "".to_owned() + "".to_string() } }