Auto merge of #8252 - mbrubeck:android-unused, r=mbrubeck

Remove some unused code on Android

r? @larsbergstrom

<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/8252)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2015-10-30 09:05:06 +05:30
commit 4ad6eba69b
2 changed files with 1 additions and 3 deletions

View file

@ -31,8 +31,6 @@ use servo::Browser;
use servo::compositing::windowing::WindowEvent;
use servo::net_traits::hosts;
use servo::util::opts;
#[cfg(target_os = "android")]
use std::borrow::ToOwned;
use std::rc::Rc;
fn main() {

View file

@ -11,7 +11,7 @@
#![feature(heap_api)]
#![feature(oom)]
#![feature(optin_builtin_traits)]
#![feature(path_ext)]
#![cfg_attr(not(target_os = "android"), feature(path_ext))]
#![feature(plugin)]
#![feature(slice_splits)]
#![feature(step_by)]