-
Notifications
You must be signed in to change notification settings - Fork 428
CodeTranslator和CecilExtensions各有一处可能的小拼写错误 #429
Open
Description
同事发现主干上: CodeTranslator.cs:1280 行和 CecilExtensions.cs:431 行,可能是小拼写错误:
- CodeTranslator.cs:1280
if (exceptionHandler.HandlerType == ExceptionHandlerType.Fault
&& exceptionHandler.HandlerType == ExceptionHandlerType.Filter)
应该改成:
if (exceptionHandler.HandlerType == ExceptionHandlerType.Fault
|| exceptionHandler.HandlerType == ExceptionHandlerType.Filter)
- CecilExtensions.cs:431
if (left.GenericParameters[i].IsSameName(right.GenericParameters[i]))
应该改成:
if ( ! left.GenericParameters[i].IsSameName(right.GenericParameters[i]))
Metadata
Metadata
Assignees
Labels
No labels
Type
Fields
Give feedbackNo fields configured for issues without a type.