Skip to content
This repository has been archived by the owner on Dec 29, 2022. It is now read-only.

Commit

Permalink
Remove unnecessary &
Browse files Browse the repository at this point in the history
  • Loading branch information
nrc committed Aug 27, 2017
1 parent ab42ce1 commit ca84ba5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/actions/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ impl ActionHandler {

pub fn find_impls<O: Output>(&self, id: usize, params: TextDocumentPositionParams, out: O) {
let t = thread::current();
let file_path = parse_file_path!(&params.text_document.uri, "find_impls");
let file_path = parse_file_path!(params.text_document.uri, "find_impls");
let span = self.convert_pos_to_span(file_path, params.position);
let type_id = self.analysis.id(&span).expect("Analysis: Getting typeid from span");
let analysis = self.analysis.clone();
Expand Down

0 comments on commit ca84ba5

Please sign in to comment.