File tree Expand file tree Collapse file tree 1 file changed +0
-2
lines changed Expand file tree Collapse file tree 1 file changed +0
-2
lines changed Original file line number Diff line number Diff line change @@ -774,7 +774,6 @@ impl OsStr {
774
774
/// [`make_ascii_lowercase`]: #method.make_ascii_lowercase
775
775
#[ unstable( feature = "osstring_ascii" , issue = "none" ) ]
776
776
pub fn to_ascii_lowercase ( & self ) -> OsString {
777
- // OsString::from_inner(Buf::from_inner(self.inner.inner.to_ascii_lowercase()))
778
777
OsString :: from_inner ( self . inner . to_ascii_lowercase ( ) )
779
778
}
780
779
@@ -799,7 +798,6 @@ impl OsStr {
799
798
/// [`make_ascii_uppercase`]: #method.make_ascii_uppercase
800
799
#[ unstable( feature = "osstring_ascii" , issue = "none" ) ]
801
800
pub fn to_ascii_uppercase ( & self ) -> OsString {
802
- // OsString::from_inner(Buf::from_inner(self.inner.inner.to_ascii_lowercase()))
803
801
OsString :: from_inner ( self . inner . to_ascii_uppercase ( ) )
804
802
}
805
803
You can’t perform that action at this time.
0 commit comments