Auto merge of #13678 - frewsxcv:unused-trait-method, r=KiChjang

Remove unused trait method.

<!-- Reviewable:start -->
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/13678)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2016-10-10 16:29:25 -05:00 committed by GitHub
commit f43a14ea68

View file

@ -276,10 +276,6 @@ impl Request {
self.url_list.borrow().last().unwrap().clone() self.url_list.borrow().last().unwrap().clone()
} }
pub fn current_url_string(&self) -> String {
self.url_list.borrow().last().unwrap().to_string()
}
pub fn is_navigation_request(&self) -> bool { pub fn is_navigation_request(&self) -> bool {
self.destination == Destination::Document self.destination == Destination::Document
} }