Skip to content

Commit

Permalink
Remove resource strings
Browse files Browse the repository at this point in the history
  • Loading branch information
mavasani committed Jan 7, 2021
1 parent 01acee1 commit 1a33f8d
Show file tree
Hide file tree
Showing 14 changed files with 0 additions and 545 deletions.
25 changes: 0 additions & 25 deletions src/Features/Core/Portable/FeaturesResources.resx
Original file line number Diff line number Diff line change
Expand Up @@ -1405,31 +1405,6 @@ This version used in: {2}</value>
<data name="ChangesDisallowedWhileStoppedAtException" xml:space="preserve">
<value>Changes are not allowed while stopped at exception</value>
</data>
<data name="Dispose_objects_before_losing_scope" xml:space="preserve">
<value>Dispose objects before losing scope</value>
</data>
<data name="Disposable_object_created_by_0_is_never_disposed" xml:space="preserve">
<value>Disposable object created by '{0}' is never disposed</value>
</data>
<data name="Use_recommended_dispose_pattern" xml:space="preserve">
<value>Use recommended dispose pattern</value>
</data>
<data name="Use_recommended_dispose_pattern_to_ensure_that_object_created_by_0_is_disposed_on_all_paths_using_statement_declaration_or_try_finally" xml:space="preserve">
<value>Use recommended dispose pattern to ensure that object created by '{0}' is disposed on all paths: using statement/declaration or try/finally</value>
<comment>{Locked="using"}{Locked="try"}{Locked="finally"} "using", "try" and "finally" are C# keywords and should not be localized.</comment>
</data>
<data name="UseRecommendedDisposePatternDescription" xml:space="preserve">
<value>Use recommended dispose pattern to ensure that locally scoped disposable objects are disposed on all paths. If possible, wrap the creation within a 'using' statement or a 'using' declaration. Otherwise, use a try-finally pattern, with a dedicated local variable declared before the try region and an unconditional Dispose invocation on non-null value in the 'finally' region, say 'x?.Dispose()'. If the object is explicitly disposed within the try region or the dispose ownership is transferred to another object or method, assign 'null' to the local variable just after such an operation to prevent double dispose in 'finally'</value>
</data>
<data name="Disposable_fields_should_be_disposed" xml:space="preserve">
<value>Disposable fields should be disposed</value>
</data>
<data name="Disposable_field_0_is_never_disposed" xml:space="preserve">
<value>Disposable field '{0}' is never disposed</value>
</data>
<data name="DisposableFieldsShouldBeDisposedDescription" xml:space="preserve">
<value>A type that implements System.IDisposable declares fields that are of types that also implement IDisposable. The Dispose method of the field is not called by the Dispose method of the declaring type. To fix a violation of this rule, call Dispose on fields that are of types that implement IDisposable if you are responsible for allocating and releasing the unmanaged resources held by the field.</value>
</data>
<data name="Wrap_and_align_call_chain" xml:space="preserve">
<value>Wrap and align call chain</value>
</data>
Expand Down
40 changes: 0 additions & 40 deletions src/Features/Core/Portable/xlf/FeaturesResources.cs.xlf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

40 changes: 0 additions & 40 deletions src/Features/Core/Portable/xlf/FeaturesResources.de.xlf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 1a33f8d

Please sign in to comment.