Skip to content

Commit 9dda935

Browse files
Remove deprecated option which is ignored anyway
1 parent d087776 commit 9dda935

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

CodeConverter/Common/DocumentExtensions.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,9 @@ private static SyntaxNode WithWarningAnnotation(SyntaxNode node, string warningT
113113
{
114114
return node.WithAdditionalAnnotations(new SyntaxAnnotation(AnnotationConstants.ConversionErrorAnnotationKind, warningText));
115115
}
116-
private static OptionSet GetVBOptions(DocumentOptionSet options) {
117-
return options.WithChangedOption(SimplificationOptions.PreferImplicitTypeInLocalDeclaration, false);
116+
private static OptionSet GetVBOptions(DocumentOptionSet options)
117+
{
118+
return options;
118119
}
119120
private static OptionSet GetCSOptions(DocumentOptionSet options) {
120121
return options;

0 commit comments

Comments
 (0)