File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -479,7 +479,7 @@ impl Url {
479
479
///
480
480
/// This returns `Err` if the given path is not absolute
481
481
/// or, with a Windows path, if the prefix is not a disk prefix (e.g. `C:`).
482
- pub fn from_file_path < P : AsPath + ? Sized > ( path : & P ) -> Result < Url , ( ) > {
482
+ pub fn from_file_path < P : AsPath > ( path : P ) -> Result < Url , ( ) > {
483
483
let path = try!( path_to_file_url_path ( path. as_path ( ) ) ) ;
484
484
Ok ( Url :: from_path_common ( path) )
485
485
}
@@ -501,7 +501,7 @@ impl Url {
501
501
/// as the base URL is `file:///var/index.html`, which might not be what was intended.
502
502
///
503
503
/// (Note that `Path::new` removes any trailing slash.)
504
- pub fn from_directory_path < P : AsPath + ? Sized > ( path : & P ) -> Result < Url , ( ) > {
504
+ pub fn from_directory_path < P : AsPath > ( path : P ) -> Result < Url , ( ) > {
505
505
let mut path = try!( path_to_file_url_path ( path. as_path ( ) ) ) ;
506
506
// Add an empty path component (i.e. a trailing slash in serialization)
507
507
// so that the entire path is used as a base URL.
You can’t perform that action at this time.
0 commit comments