File tree Expand file tree Collapse file tree
ICSharpCode.Decompiler.Tests/TestCases/Pretty Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -236,17 +236,17 @@ public static IEnumerable<char> Issue1310a(bool test)
236236 {
237237#if ROSLYN && OPT
238238 IEnumerable < char > obj = ( test ? ( from c in Enumerable . Range ( 0 , 255 )
239- where char . IsLetter ( ( char ) c )
240- select ( char ) c ) : ( from c in Enumerable . Range ( 0 , 255 )
241- where char . IsDigit ( ( char ) c )
242- select ( char ) c ) ) ;
239+ where char . IsLetter ( ( char ) c )
240+ select ( char ) c ) : ( from c in Enumerable . Range ( 0 , 255 )
241+ where char . IsDigit ( ( char ) c )
242+ select ( char ) c ) ) ;
243243 return obj . Concat ( obj ) ;
244244#else
245245 IEnumerable < char > enumerable = ( test ? ( from c in Enumerable . Range ( 0 , 255 )
246- where char . IsLetter ( ( char ) c )
247- select ( char ) c ) : ( from c in Enumerable . Range ( 0 , 255 )
248- where char . IsDigit ( ( char ) c )
249- select ( char ) c ) ) ;
246+ where char . IsLetter ( ( char ) c )
247+ select ( char ) c ) : ( from c in Enumerable . Range ( 0 , 255 )
248+ where char . IsDigit ( ( char ) c )
249+ select ( char ) c ) ) ;
250250 return enumerable . Concat ( enumerable ) ;
251251#endif
252252 }
You can’t perform that action at this time.
0 commit comments