This repository was archived by the owner on Feb 27, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
JustArchiNET.Madness/PathMadness Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 11<Project >
22 <PropertyGroup >
3- <Version >2.3.1 </Version >
3+ <Version >2.3.2 </Version >
44 </PropertyGroup >
55
66 <PropertyGroup >
Original file line number Diff line number Diff line change @@ -47,17 +47,17 @@ public static class Path {
4747 [ ContractAnnotation ( "null=>null;notnull=>notnull" ) ]
4848 [ MadnessType ( EMadnessType . Proxy ) ]
4949 [ Pure ]
50- public static string ? GetExtension ( string ? path ) => System . IO . Path . GetExtension ( path ) ;
50+ public static string GetExtension ( string ? path ) => System . IO . Path . GetExtension ( path ) ! ;
5151
5252 [ ContractAnnotation ( "null=>null;notnull=>notnull" ) ]
5353 [ MadnessType ( EMadnessType . Proxy ) ]
5454 [ Pure ]
55- public static string ? GetFileName ( string ? path ) => System . IO . Path . GetFileName ( path ) ;
55+ public static string GetFileName ( string ? path ) => System . IO . Path . GetFileName ( path ) ! ;
5656
5757 [ ContractAnnotation ( "null=>null;notnull=>notnull" ) ]
5858 [ MadnessType ( EMadnessType . Proxy ) ]
5959 [ Pure ]
60- public static string ? GetFileNameWithoutExtension ( string ? path ) => System . IO . Path . GetFileNameWithoutExtension ( path ) ;
60+ public static string GetFileNameWithoutExtension ( string ? path ) => System . IO . Path . GetFileNameWithoutExtension ( path ) ! ;
6161
6262 [ MadnessType ( EMadnessType . Proxy ) ]
6363 [ Pure ]
You can’t perform that action at this time.
0 commit comments